about summary refs log tree commit diff stats
path: root/build/rust/cog.toml
diff options
context:
space:
mode:
Diffstat (limited to 'build/rust/cog.toml')
-rw-r--r--build/rust/cog.toml25
1 files changed, 25 insertions, 0 deletions
diff --git a/build/rust/cog.toml b/build/rust/cog.toml
new file mode 100644
index 0000000..b4c68e1
--- /dev/null
+++ b/build/rust/cog.toml
@@ -0,0 +1,25 @@
+tag_prefix = "v"
+branch_whitelist = ["main", "prime"]
+ignore_merge_commits = false
+
+pre_bump_hooks = [
+  "nix flake check",                     # verify the project builds
+  "./scripts/renew_copyright_header.sh", # update the license header in each file
+  "cargo set-version {{version}}",       # bump version in Cargo.toml
+  "nix fmt",                             # format
+]
+post_bump_hooks = [
+  "git push",
+  "cargo publish",
+  "git push origin v{{version}}", # push the new tag to origin
+]
+
+[bump_profiles]
+
+[changelog]
+path = "NEWS.md"
+template = "remote"
+remote = "%INIT_REMOTE"
+repository = "%INIT_REPOSITORY"
+owner = "%INIT_OWNER"
+authors = [{ signature = "%INIT_AUTHOR_NAME", username = "%INIT_OWNER" }]