Rspack releases are automated through GitHub Actions.
You can view all released versions on the npm version pages of @rspack/core and @rspack/cli.
The latest stable release follows the Semantic Versioning specification (x.y.z).
The full release workflow is triggered manually by Rspack maintainers on Tuesday with the complete release notes.
During the release, the following binary artifacts for the target platforms are built:
release/v1.0.0.pnpm x version command on the branch.# Release a patch version
pnpm x version patch
# Release a minor version
pnpm x version minor
# Release a major version
pnpm x version major
# Release an alpha version
pnpm x version patch --pre alpha
# Release a beta version
pnpm x version patch --pre beta
# Release a rc version
pnpm x version patch --pre rcgit add .
git commit -m "chore: release v1.0.0"
git push origin release/vx.y.zchore: release v1.0.0.main branch.Canary is the pre-release version for testing and verifying new features.
Releasing a canary version does not require manually creating a branch or updating the version, it only requires Rspack maintainers to trigger the Canary release workflow.