Skip to content

Release process

Daniel Chao edited this page Dec 16, 2025 · 2 revisions
  1. Add release notes to CHANGELOG
  2. Run npm version <major|minor|patch> --no-git-tag-version
  3. Commit changes: git add . && git commit -m "Prepare x.y.z release"
  4. Submit PR and merge to main
  5. Create a tag: git tag -a x.y.z -m "Release version x.y.z"
  6. Push the tag to upstream (assuming this remote is called "upstream": git push upstream refs/tags/x.y.z)

Clone this wiki locally