robin_cli_tool 1.1.0

A CLI tool to run scripts for any project
Documentation
sign-commit = false
sign-tag = false
publish = true
push = true
tag-name = "{{version}}"

# Finalize CHANGELOG.md inside cargo-release's release commit: git-cliff
# prepends the new version's section (generated from the commits since the
# last tag) to CHANGELOG.md. Configuration lives in cliff.toml.
#
# The `$DRY_RUN` guard is important: git-cliff always writes the file, so
# without it a `cargo release <level>` preview would modify CHANGELOG.md, and
# because --prepend isn't idempotent a later real run would duplicate the
# entry. On a dry run we no-op; cargo-release sets NEW_VERSION for real runs.
pre-release-hook = [
  "sh",
  "-c",
  "[ \"$DRY_RUN\" = true ] && exit 0; git-cliff --config cliff.toml --unreleased --tag \"$NEW_VERSION\" --prepend CHANGELOG.md",
]