Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 832 Bytes

RELEASE.md

File metadata and controls

25 lines (21 loc) · 832 Bytes

Release Checklist

Update changelog, version, tag, and publish

# Make sure your main branch is up to date and all tests pass
git checkout main
git pull origin
npm install
npm run all

# Pick a version, see https://semver.org/ - for example: 'A.B.C' or 'A.B.C-pre.D'
# Update version number in `package.json`
# Update CHANGELOG.md and docs as needed
export VERSION=vA.B.C-pre.D
git add . && git commit -m "$VERSION"
git tag "$VERSION"
git push origin main "$VERSION"
npm publish

Set as latest release on GitHub: