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
38
39
40
41
42
43
44
# cargo-release configuration
# https://github.com/crate-ci/cargo-release
= ["main"]
# Tagging
= true
= "Release {{version}}"
# Push changes + tag
= true
# Publish to crates.io
= true
# Verify before publish
= true
# Consolidate changelog + version bump into one commit
= true
# Update dependent workspace crates
= "upgrade"
= true
# Commit message for version bump
= "chore(release): prepare {{version}}"
# -------------------------
# Changelog integration
# -------------------------
# Generate the changelog for this release BEFORE committing/tagging
= [
"git-cliff",
"--unreleased",
"--tag",
"{{version}}",
"--output",
"CHANGELOG.md"
]
# Remove deprecated fields:
# - sign-commit, sign-tag (use git config if needed)