Skip to content

Commit 25342e5

Browse files
authored
release: v0.6.0 (#706)
## Description <!-- Provide a concise and descriptive summary of the changes implemented in this PR. --> ### Introduces a breaking change? - [ ] Yes - [ ] No ### Type of change - [ ] Bug fix (change which fixes an issue) - [ ] New feature (change which adds functionality) - [ ] Documentation update (improves or adds clarity to existing documentation) - [ ] Other (chores, tests, code style improvements etc.) ### Tested on - [ ] iOS - [ ] Android ### Testing instructions <!-- Provide step-by-step instructions on how to test your changes. Include setup details if necessary. --> ### Screenshots <!-- Add screenshots here, if applicable --> ### Related issues <!-- Link related issues here using #issue-number --> ### Checklist - [ ] I have performed a self-review of my code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have updated the documentation accordingly - [ ] My changes generate no new warnings ### Additional notes <!-- Include any additional information, assumptions, or context that reviewers might need to understand this PR. -->
1 parent 6f4dd53 commit 25342e5

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div align="center">
2-
<h1 align="center" style="display:inline-block">React Native ExecuTorch
2+
<h1 align="center" style="display:inline-block">React Native ExecuTorch
33
</h1>
44
</div>
55

@@ -46,12 +46,12 @@ React Native ExecuTorch bridges the gap between React Native and native platform
4646

4747
## :yin_yang: Supported Versions
4848

49-
The minimal supported version are:
49+
The minimal supported version are:
5050
* iOS 17.0
5151
* Android 13
52-
* React Native 0.76
52+
* React Native 0.81
5353

54-
> [!IMPORTANT]
54+
> [!IMPORTANT]
5555
> React Native ExecuTorch supports only the [New React Native architecture](https://reactnative.dev/architecture/landing-page).
5656
5757
## :earth_africa: Real-world Example
@@ -127,7 +127,7 @@ Then, depending on the platform, choose either iOS or Android:
127127
yarn expo run:< ios | android >
128128
```
129129

130-
> [!WARNING]
130+
> [!WARNING]
131131
> Running LLMs requires a significant amount of RAM. If you are encountering unexpected app crashes, try to increase the amount of RAM allocated to the emulator.
132132
133133
## :robot: Ready-made Models
@@ -136,7 +136,7 @@ Our library has a number of ready-to-use AI models; a complete list is available
136136

137137
## :books: Documentation
138138

139-
Check out how our library can help you build your React Native AI features by visiting our docs:
139+
Check out how our library can help you build your React Native AI features by visiting our docs:
140140
https://docs.swmansion.com/react-native-executorch
141141

142142
## :balance_scale: License

RELEASE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The release process of new minor version consists of the following steps:
77
1. Bump version in `package.json` to the new version `v{MAJOR}.{MINOR}.0`.
88
2. Update version tags in `packages/react-native-executorch/src/constants/modelUrls.ts` to point to the proper `MINOR` version and update tags on [🤗 huggingface](https://huggingface.co/software-mansion).
99
3. Commit with a message 'Release v{MAJOR}.{MINOR}.0'. (We want to keep the latest `MINOR` version on the `main` branch.)
10-
4. Create a new branch release branch `release/{MAJOR}.{MINOR}`and push it to the remote.
10+
4. Create a new release branch `release/{MAJOR}.{MINOR}`and push it to the remote.
1111
5. Stability tests are performed on the release branch and all fixes to the new-found issues are pushed into the main branch and cherry-picked into the release branch. This allows for further development on the main branch without interfering with the release process.
1212
6. Once all tests are passed, tag the release branch with proper version tag `v{MAJOR}.{MINOR}.0` and run `npm publish`.
1313
7. Create versioned docs by running from repo root `(cd docs && yarn docusaurus docs:version {MAJOR}.{MINOR}.x)` (the 'x' part is intentional and is not to be substituted).

packages/react-native-executorch/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-executorch",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"description": "An easy way to run AI models in React Native with ExecuTorch",
55
"source": "./src/index.ts",
66
"main": "./lib/module/index.js",

0 commit comments

Comments
 (0)