You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Why
Auto bumping package.json in CI requires pushing to `main`. We should
create a PR to bump version instead.
## What changed
- Remove prepare-release.yml
- Update README
## Versioning
- [ ] Breaking protocol change
- [ ] Breaking ts/js API change
<!-- Kind reminder to add tests and updated documentation if needed -->
Copy file name to clipboardExpand all lines: README.md
+19-12Lines changed: 19 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -285,19 +285,26 @@ River uses an automated release process with [Release Drafter](https://github.co
285
285
- Updates the draft release notes with PR titles
286
286
- You can view the draft at [GitHub Releases](../../releases)
287
287
288
-
2.**When ready to release**:
288
+
2.**When ready to release, create a version bump PR**:
289
289
290
-
- Go to [Actions](../../actions/workflows/prepare-release.yml)
291
-
- Click "Run workflow" to open the configuration dialog
292
-
- Click "Run workflow" again to confirm and start the process (version is automatically determined from draft release)
290
+
- Create a PR that bumps the version in `package.json` and `package-lock.json`. You can run `pnpm version --no-git-tag-version <version>` to bump the version.
291
+
- Use semantic versioning:
292
+
-`patch` - Bug fixes, small improvements (e.g., 0.208.4 → 0.208.5)
293
+
-`minor` - New features, backwards compatible (e.g., 0.208.4 → 0.209.0)
0 commit comments