Skip to content

Commit 5a7e91a

Browse files
authored
Bump verison (#68)
## Description Bump version to 0.2.0
1 parent 668f375 commit 5a7e91a

File tree

7 files changed

+12
-16
lines changed

7 files changed

+12
-16
lines changed

examples/computer-vision/App.tsx

-4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ enum ModelType {
1313
STYLE_TRANSFER,
1414
OBJECT_DETECTION,
1515
CLASSIFICATION,
16-
SEMANTIC_SEGMENTATION,
1716
}
1817

1918
export default function App() {
@@ -47,8 +46,6 @@ export default function App() {
4746
return (
4847
<ClassificationScreen imageUri={imageUri} setImageUri={setImageUri} />
4948
);
50-
case ModelType.SEMANTIC_SEGMENTATION:
51-
return <></>;
5249
default:
5350
return (
5451
<StyleTransferScreen imageUri={imageUri} setImageUri={setImageUri} />
@@ -67,7 +64,6 @@ export default function App() {
6764
'Style Transfer',
6865
'Object Detection',
6966
'Classification',
70-
'Semantic Segmentation',
7167
]}
7268
onValueChange={(_, selectedIndex) => {
7369
handleModeChange(selectedIndex);

examples/computer-vision/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"metro-config": "^0.81.0",
1717
"react": "18.3.1",
1818
"react-native": "0.76.3",
19-
"react-native-executorch": "^0.1.3",
19+
"react-native-executorch": "^0.2.0",
2020
"react-native-image-picker": "^7.2.2",
2121
"react-native-loading-spinner-overlay": "^3.0.1",
2222
"react-native-reanimated": "^3.16.3",

examples/computer-vision/yarn.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -3352,7 +3352,7 @@ __metadata:
33523352
metro-config: ^0.81.0
33533353
react: 18.3.1
33543354
react-native: 0.76.3
3355-
react-native-executorch: ^0.1.3
3355+
react-native-executorch: ^0.2.0
33563356
react-native-image-picker: ^7.2.2
33573357
react-native-loading-spinner-overlay: ^3.0.1
33583358
react-native-reanimated: ^3.16.3
@@ -6799,9 +6799,9 @@ __metadata:
67996799
languageName: node
68006800
linkType: hard
68016801

6802-
"react-native-executorch@npm:^0.1.3":
6803-
version: 0.1.3
6804-
resolution: "react-native-executorch@npm:0.1.3"
6802+
"react-native-executorch@npm:^0.2.0":
6803+
version: 0.2.0
6804+
resolution: "react-native-executorch@npm:0.2.0"
68056805
peerDependencies:
68066806
react: "*"
68076807
react-native: "*"

examples/llama/ios/Podfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1277,7 +1277,7 @@ PODS:
12771277
- ReactCommon/turbomodule/bridging
12781278
- ReactCommon/turbomodule/core
12791279
- Yoga
1280-
- react-native-executorch (0.1.3):
1280+
- react-native-executorch (0.2.0):
12811281
- DoubleConversion
12821282
- glog
12831283
- hermes-engine

examples/llama/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"metro-config": "^0.81.0",
1717
"react": "18.3.1",
1818
"react-native": "0.76.3",
19-
"react-native-executorch": "^0.1.3",
19+
"react-native-executorch": "^0.2.0",
2020
"react-native-loading-spinner-overlay": "^3.0.1",
2121
"react-native-markdown-display": "^7.0.2",
2222
"react-native-reanimated": "^3.16.3",

examples/llama/yarn.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -5269,7 +5269,7 @@ __metadata:
52695269
metro-config: ^0.81.0
52705270
react: 18.3.1
52715271
react-native: 0.76.3
5272-
react-native-executorch: ^0.1.3
5272+
react-native-executorch: ^0.2.0
52735273
react-native-loading-spinner-overlay: ^3.0.1
52745274
react-native-markdown-display: ^7.0.2
52755275
react-native-reanimated: ^3.16.3
@@ -6701,9 +6701,9 @@ __metadata:
67016701
languageName: node
67026702
linkType: hard
67036703

6704-
"react-native-executorch@npm:^0.1.3":
6705-
version: 0.1.3
6706-
resolution: "react-native-executorch@npm:0.1.3"
6704+
"react-native-executorch@npm:^0.2.0":
6705+
version: 0.2.0
6706+
resolution: "react-native-executorch@npm:0.2.0"
67076707
peerDependencies:
67086708
react: "*"
67096709
react-native: "*"

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-executorch",
3-
"version": "0.1.3",
3+
"version": "0.2.0",
44
"description": "An easy way to run AI models in react native with ExecuTorch",
55
"source": "./src/index.ts",
66
"main": "./lib/commonjs/index.js",

0 commit comments

Comments
 (0)