-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathrelease.toml
More file actions
29 lines (22 loc) · 807 Bytes
/
release.toml
File metadata and controls
29 lines (22 loc) · 807 Bytes
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
# cargo-release configuration
# Install: cargo install cargo-release
# Usage: cargo release patch|minor|major
# Tag name format (v0.1.14)
tag-name = "v{{version}}"
# Push to remote after release
push = true
# Create and push git tag
tag = true
# Commit message format (no "chore: " prefix)
pre-release-commit-message = "Release {{crate_name}} version {{version}}"
# Sign commits (set to true if you use GPG signing)
sign-commit = false
sign-tag = false
# Don't publish to crates.io (GitHub releases handle distribution)
publish = false
# Pre-release replacements (update version references in other files)
# Uncomment and adjust if you have version references elsewhere
# [[pre-release-replacements]]
# file = "README.md"
# search = "memex/v[0-9]+\\.[0-9]+\\.[0-9]+"
# replace = "memex/v{{version}}"