-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b529052
commit 9912c9f
Showing
1 changed file
with
7 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -72,16 +72,20 @@ You may need to make changes to a pre-release prior to publishing a final stable | |
- Commit the edited `pre.json` file along with any unpublished changesets, and push the `release-*` branch to GitHub. | ||
- Wait for the release workflow to finish. The Changesets action in the workflow will open a PR that will increment all versions and generate the changelogs for the stable release. | ||
- Review the updated `CHANGELOG` files and make any adjustments necessary. | ||
- `find packages -name 'CHANGELOG.md' -mindepth 2 -maxdepth 2 -exec code {} \;` | ||
- We should remove the changelogs for all pre-releases ahead of publishing the stable version. | ||
- [TODO: We should automate this] | ||
- Prepare the github release notes | ||
- Copy the relevant changelog entries from all packages into the Release Notes and adjust accordingly, matching the format used by prior releases | ||
- Merge the PR into the `release-*` branch. | ||
- Once the PR is merged, the release workflow will publish the updated packages to npm. | ||
- Once the release is published: | ||
- merge the `release-*` branch into `main` and push it up to GitHub | ||
- merge the `release-*` branch into `dev` and push it up to GitHub | ||
- Convert the `[email protected]` tag to a Release on Github with the name `v1.x.y` | ||
- Pull the latest `release-*` branch containing the PR you just merged | ||
- Merge the `release-*` branch into `main` **using a non-fast-forward merge** and push it up to GitHub | ||
- `git checkout main; git merge --no-ff release-next` | ||
- Merge the `release-*` branch into `dev` **using a non-fast-forward merge** and push it up to GitHub | ||
- `git checkout dev; git merge --no-ff release-next` | ||
- Convert the `[email protected]` tag to a Release on Github with the name `v1.x.y` using he release notes prepared above | ||
|
||
### Experimental releases | ||
|
||
|