From 4f2b735472eb921b5edd91c502e0a47d5e4d0cd2 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Tue, 11 Jun 2024 09:48:15 +0200 Subject: chore(build): Update --- build/rust/cog.toml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 build/rust/cog.toml (limited to 'build/rust/cog.toml') 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" }] -- cgit 1.4.1