1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# 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
# Also sign commits (not just tags). Requires a configured gpg or ssh
# signing key in git config (`user.signingkey`, `commit.gpgsign`).
= true
# Don't enable incremental version bumping; we bump explicitly.
= []