-
Notifications
You must be signed in to change notification settings - Fork 4.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chores(releases): rename script and add info note #3815
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
:::info | ||
For versions older than 0.70, you need to run `./scripts/bump-oss-version.js` instead. | ||
::: |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -4,6 +4,7 @@ title: Branch Cut & RC0 | |||||
--- | ||||||
|
||||||
import AsyncTestingNote from './\_markdown-async-testing-note.mdx'; | ||||||
import BumpOSSNote from './\_markdown-older-bump-script.mdx'; | ||||||
import GHReleasesNotesPrerelease from './\_markdown-GH-release-notes-prerelease.mdx'; | ||||||
import RoadToReleaseTemplate from './\_markdown-road-to-release-template.mdx'; | ||||||
|
||||||
|
@@ -63,11 +64,13 @@ Before continuing further, follow the [testing guide](/contributing/release-test | |||||
|
||||||
Once you're done with the testing, you can kick-off the bump and publishing of RC0: | ||||||
|
||||||
``` | ||||||
```bash | ||||||
# This will walk you through what version you are releasing | ||||||
./scripts/bump-oss-version.js --to-version 0.69.0-rc.0 --token <YOUR_CIRCLE_CI_TOKEN> | ||||||
yarn trigger-react-native-release --to-version 0.69.0-rc.0 --token <YOUR_CIRCLE_CI_TOKEN> | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
We use this format elsewhere, so we might as well can align here. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the entire page is using 0.69 as the example version, so I'd rather keep it consistent across the page. Someone as a follow up PR (maybe in 6 months or so, to connect to your other comment) could do a pass on all the release pages and update them to change both the example code and remove "old versions" references. In quite a few pages we have things like "before 0.71" or even "before 0.68". |
||||||
``` | ||||||
|
||||||
<BumpOSSNote/> | ||||||
|
||||||
- Once you have run that script, head to CircleCI and you should see under the releases workflow, a `prepare-package-for-release` job. | ||||||
|
||||||
<figure> | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it's fine for now, but since 0.69 is out of support already, maybe we can remove this note in not-so-distant future?