- Launch expected by March 2026
We use Changesets to record version intent and compute the next versions in CI.
- After making a change that should affect a package version, run:
npx changeset
- Select the impact (Major/Minor/Patch) for each affected package.
- Commit the generated file in
.changeset/alongside your code changes.
- CI runs
pnpm changeset:statusto calculate the next version numbers from all changesets. - This prevents manual version bumps and keeps versions consistent.
- Run
pnpm changeset:versionto apply version bumps and generate changelogs. - Publish the packages using your normal release process.