Skip to content

Commit

Permalink
Bump verison (#68)
Browse files Browse the repository at this point in the history
## Description
Bump version to 0.2.0
  • Loading branch information
jakmro authored Dec 18, 2024
1 parent 668f375 commit 5a7e91a
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 16 deletions.
4 changes: 0 additions & 4 deletions examples/computer-vision/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ enum ModelType {
STYLE_TRANSFER,
OBJECT_DETECTION,
CLASSIFICATION,
SEMANTIC_SEGMENTATION,
}

export default function App() {
Expand Down Expand Up @@ -47,8 +46,6 @@ export default function App() {
return (
<ClassificationScreen imageUri={imageUri} setImageUri={setImageUri} />
);
case ModelType.SEMANTIC_SEGMENTATION:
return <></>;
default:
return (
<StyleTransferScreen imageUri={imageUri} setImageUri={setImageUri} />
Expand All @@ -67,7 +64,6 @@ export default function App() {
'Style Transfer',
'Object Detection',
'Classification',
'Semantic Segmentation',
]}
onValueChange={(_, selectedIndex) => {
handleModeChange(selectedIndex);
Expand Down
2 changes: 1 addition & 1 deletion examples/computer-vision/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
8 changes: 4 additions & 4 deletions examples/computer-vision/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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: "*"
Expand Down
2 changes: 1 addition & 1 deletion examples/llama/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/llama/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
8 changes: 4 additions & 4 deletions examples/llama/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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: "*"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit 5a7e91a

Please sign in to comment.