# cargo-release configuration — see https://github.com/crate-ci/cargo-release
#
# Install with: cargo install cargo-release
# Cut a release with:
# cargo release version 0.4.0 --execute
# cargo release publish --execute
# (or one command: cargo release 0.4.0 --execute)
# We do NOT want cargo-release to push tags or GitHub releases automatically —
# the release notes are hand-curated via `gh release create` after the tag
# exists. Set `push=false` so cargo-release stops before pushing.
= false
# Publish to crates.io.
= true
# Confirm before doing anything destructive.
= true
# Pre-release hook: run the verification gate before tagging.
= [
{ = "CHANGELOG.md", = "## \\[Unreleased\\]", = "## [{{version}}] - {{date}}", = 1 },
]
# Tag format: v0.4.0 (matches the existing convention).
= "v"
= "v{{version}}"
# Sign tags with the default git signing key.
= true
# Don't enable incremental version bumping; we bump explicitly.
= []