diff --git a/examples/computer-vision/App.tsx b/examples/computer-vision/App.tsx index 7fc4571..8d01269 100644 --- a/examples/computer-vision/App.tsx +++ b/examples/computer-vision/App.tsx @@ -13,7 +13,6 @@ enum ModelType { STYLE_TRANSFER, OBJECT_DETECTION, CLASSIFICATION, - SEMANTIC_SEGMENTATION, } export default function App() { @@ -47,8 +46,6 @@ export default function App() { return ( ); - case ModelType.SEMANTIC_SEGMENTATION: - return <>; default: return ( @@ -67,7 +64,6 @@ export default function App() { 'Style Transfer', 'Object Detection', 'Classification', - 'Semantic Segmentation', ]} onValueChange={(_, selectedIndex) => { handleModeChange(selectedIndex); diff --git a/examples/computer-vision/package.json b/examples/computer-vision/package.json index 98c3557..e7c55af 100644 --- a/examples/computer-vision/package.json +++ b/examples/computer-vision/package.json @@ -16,7 +16,7 @@ "metro-config": "^0.81.0", "react": "18.3.1", "react-native": "0.76.3", - "react-native-executorch": "^0.1.3", + "react-native-executorch": "^0.2.0", "react-native-image-picker": "^7.2.2", "react-native-loading-spinner-overlay": "^3.0.1", "react-native-reanimated": "^3.16.3", diff --git a/examples/computer-vision/yarn.lock b/examples/computer-vision/yarn.lock index 0b8a954..fbeed4b 100644 --- a/examples/computer-vision/yarn.lock +++ b/examples/computer-vision/yarn.lock @@ -3352,7 +3352,7 @@ __metadata: metro-config: ^0.81.0 react: 18.3.1 react-native: 0.76.3 - react-native-executorch: ^0.1.3 + react-native-executorch: ^0.2.0 react-native-image-picker: ^7.2.2 react-native-loading-spinner-overlay: ^3.0.1 react-native-reanimated: ^3.16.3 @@ -6799,9 +6799,9 @@ __metadata: languageName: node linkType: hard -"react-native-executorch@npm:^0.1.3": - version: 0.1.3 - resolution: "react-native-executorch@npm:0.1.3" +"react-native-executorch@npm:^0.2.0": + version: 0.2.0 + resolution: "react-native-executorch@npm:0.2.0" peerDependencies: react: "*" react-native: "*" diff --git a/examples/llama/ios/Podfile.lock b/examples/llama/ios/Podfile.lock index 91bef94..5a17c11 100644 --- a/examples/llama/ios/Podfile.lock +++ b/examples/llama/ios/Podfile.lock @@ -1277,7 +1277,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - react-native-executorch (0.1.3): + - react-native-executorch (0.2.0): - DoubleConversion - glog - hermes-engine diff --git a/examples/llama/package.json b/examples/llama/package.json index 4bb62a3..9c5fbeb 100644 --- a/examples/llama/package.json +++ b/examples/llama/package.json @@ -16,7 +16,7 @@ "metro-config": "^0.81.0", "react": "18.3.1", "react-native": "0.76.3", - "react-native-executorch": "^0.1.3", + "react-native-executorch": "^0.2.0", "react-native-loading-spinner-overlay": "^3.0.1", "react-native-markdown-display": "^7.0.2", "react-native-reanimated": "^3.16.3", diff --git a/examples/llama/yarn.lock b/examples/llama/yarn.lock index 613e0f9..0ba1ea0 100644 --- a/examples/llama/yarn.lock +++ b/examples/llama/yarn.lock @@ -5269,7 +5269,7 @@ __metadata: metro-config: ^0.81.0 react: 18.3.1 react-native: 0.76.3 - react-native-executorch: ^0.1.3 + react-native-executorch: ^0.2.0 react-native-loading-spinner-overlay: ^3.0.1 react-native-markdown-display: ^7.0.2 react-native-reanimated: ^3.16.3 @@ -6701,9 +6701,9 @@ __metadata: languageName: node linkType: hard -"react-native-executorch@npm:^0.1.3": - version: 0.1.3 - resolution: "react-native-executorch@npm:0.1.3" +"react-native-executorch@npm:^0.2.0": + version: 0.2.0 + resolution: "react-native-executorch@npm:0.2.0" peerDependencies: react: "*" react-native: "*" diff --git a/package.json b/package.json index b673104..9947d4c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native-executorch", - "version": "0.1.3", + "version": "0.2.0", "description": "An easy way to run AI models in react native with ExecuTorch", "source": "./src/index.ts", "main": "./lib/commonjs/index.js",