From 35ded44a0a780f87b64e649be795ebea32b0235e Mon Sep 17 00:00:00 2001 From: Jake Shadle Date: Tue, 5 Mar 2024 11:05:21 +0100 Subject: [PATCH] Update to v2 --- tag.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tag.sh b/tag.sh index 4a68d82..d909b1a 100755 --- a/tag.sh +++ b/tag.sh @@ -12,8 +12,8 @@ git diff-index --quiet HEAD || git commit -m "Bump to $deny_version" # Add the new tag git tag -a "v$version" -m "Release $version - cargo-deny $deny_version" -# Move the v1 tag to the new commit -git tag -fa "v1" -m "Release $version - cargo-deny $deny_version" +# Move the v2 tag to the new commit +git tag -fa "v2" -m "Release $version - cargo-deny $deny_version" git push --tags --force git push