32 lines
645 B
TOML
32 lines
645 B
TOML
tag_prefix = "v"
|
|
branch_whitelist = [ "main" ]
|
|
ignore_merge_commits = false
|
|
|
|
[commit_types]
|
|
|
|
pre_bump_hooks = [
|
|
"licensur -p -i" # update the license header in each file
|
|
"nix build", # verify the project builds
|
|
"cargo fmt --all" # format
|
|
"cargo set-version {{version}}", # bump version in Cargo.toml
|
|
]
|
|
post_bump_hooks = [
|
|
"git push",
|
|
"cargo publish",
|
|
"git push origin v{{version}}", # push the new tag to origin
|
|
]
|
|
|
|
[bump_profiles]
|
|
|
|
[changelog]
|
|
path = "NEWS.md"
|
|
remote = "git.nerdcult.net"
|
|
repository = "keymaps"
|
|
owner = "trinitrix"
|
|
authors = [
|
|
{ signature = "Soispha", username = "soispha" },
|
|
]
|
|
|
|
|
|
[packages]
|