pre_bump_hooks = [
"""
sh -c "if [[ \\"$(git rev-parse --abbrev-ref HEAD)\\" != \\"main\\" ]]; then echo \\"[error] you can only bump version on main branch\\"; exit 1; fi"
""",
"echo 'bumping from {{latest}} to {{version}}'",
"cargo bump {{version}}",
"cargo build --workspace --release",
]
post_bump_hooks = [
"git push",
"git push origin {{version}}",
"echo 'publishing esdl {{version}}'",
"cargo publish -p esdl",
]
[changelog]
path = "CHANGELOG.md"
template = "remote"
remote = "github.com"
repository = "esdl"
owner = "thalo-rs"
authors = [{ signature = "Ari Seyhun", username = "tqwewe" }]