rsecure 0.6.1

A simple file encryption and decryption tool using AES-GCM.
from_latest_tag = true
ignore_merge_commits = true
ignore_fixup_commits = true
disable_changelog = false
disable_bump_commit = false
branch_whitelist = ["main"]
skip_untracked = false

pre_bump_hooks = [
    "cargo set-version {{version}}",
    "cargo update --workspace --offline",
    "cog changelog",
]
post_bump_hooks = [
    # cog creates the bump commit directly via git2, which does not fire the
    # local `post-commit` hook (the one that auto-pushes main). Push it
    # explicitly here so the bump commit and its tag both land on the remote.
    "git push origin main",
    "git push origin {{version}}",
]

[git_hooks]
[git_hooks.pre-commit]
# cog install-hook --all
script = "./pre-commit.sh"

# [commit_types]
# feat = { changelog_title = "➕ Additional features" }
# fix = { changelog_title = "🪲 Releases" }

[changelog]
path = "CHANGELOG.md"
authors = [{ username = "containerscrew", signature = "dcrookie" }]

[bump_profiles]