Files
2026-06-01 12:21:32 +08:00

402 B

How to publish a new release

  1. Create a new branch prep-vX.X.X
git checkout -b prep-vX.X.X
  1. Bump the version in package.json
npm version vX.X.X
  1. Add a new entry in CHANGELOG.md
  2. Create a PR for prev-vX.X.X & merge it
  3. Create tag and push it
git tag vX.X.X
git push origin vX.X.X
  1. Paste CHANGELOG into release notes and publish the version on GitHub