Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 581 Bytes

File metadata and controls

26 lines (18 loc) · 581 Bytes

Release Guide

This repo publishes crates with a two-stage flow:

  1. prepare the release commit with cargo release
  2. run the release candidate workflow on main
  3. push the final vX.Y.Z tag after the candidate passes

The detailed operator playbook lives in docs/release.md.

Quick Commands

Patch release preparation:

cargo release patch --workspace --no-publish --no-tag --no-push --no-confirm --execute
git push origin main

Final release tag after the candidate workflow passes:

git tag vX.Y.Z
git push origin vX.Y.Z