-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrelease.toml
More file actions
23 lines (22 loc) · 813 Bytes
/
release.toml
File metadata and controls
23 lines (22 loc) · 813 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# cargo-release configuration
# Usage: cargo release patch|minor|major [--dry-run]
#
# Version is centralized in [workspace.package] version in Cargo.toml.
# Nix packages read it via builtins.fromTOML — no other files need updating.
# CI builds and publishes all artifacts when the v* tag is pushed.
allow-branch = ["main"]
# Remote name (default is "origin", ours is "github")
push-remote = "github"
# All workspace crates share one version, release together
shared-version = true
consolidate-commits = true
# Don't publish to crates.io (private application)
publish = false
# Push the tag to trigger CI release workflow
push = true
tag = true
# Tag format: v0.8.4 (matches CI tag filter)
tag-prefix = "v"
tag-name = "v{{version}}"
# Commit message format
pre-release-commit-message = "release: v{{version}}"