We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ab2de98 + da71ab2 commit 7c3e948Copy full SHA for 7c3e948
justfile
@@ -100,6 +100,6 @@ STABLE_TOOLCHAIN := "1.88.0"
100
if ! grep -q '^version = "{{version}}"' {{crate}}/Cargo.toml; then \
101
echo "tag: Cargo.toml version mismatch"; exit 1; fi
102
# An annotated release tag is specific to a crate following the convention crate-version.
103
- echo "Adding release tag {{crate}}-{{version}} and pushing to {{remote}}..."
104
- git tag -a {{crate}}-{{version}} -m "Release {{version}} for {{crate}}"
105
- git push {{remote}} {{crate}}-{{version}}
+ echo "Adding release tag {{crate}}-v{{version}} and pushing to {{remote}}..."
+ git tag -a {{crate}}-v{{version}} -m "Release v{{version}} for {{crate}}"
+ git push {{remote}} {{crate}}-v{{version}}
0 commit comments