# cargo-release configuration
# Usage:
# cargo release patch - bump patch (0.1.0 -> 0.1.1)
# cargo release minor - bump minor (0.1.0 -> 0.2.0)
# cargo release major - bump major (0.1.0 -> 1.0.0)
# Add --execute to actually run (dry-run by default)
# Commit and tag format
= "release v{{version}}"
= ""
# Don't publish to crates.io during release (do it separately with cargo pub)
= true
# Push commits and tags to remote
= true
# Sign tags
= true