Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 810 Bytes

File metadata and controls

26 lines (21 loc) · 810 Bytes

Release Checklist

Update version, tag, and publish

# Make sure your main branch is up to date and all tests pass
git checkout main
git pull origin
bun install
bun 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

export VERSION=vA.B.C-pre.D
git add . && git commit -m "$VERSION"
git tag "$VERSION"
git push origin main "$VERSION"
bun publish

Set as latest release on GitHub: