Skip to content

Commit 7c3e948

Browse files
authored
Merge pull request #136 from nyonson/fix-tag
Fix "v" in tag recipe
2 parents ab2de98 + da71ab2 commit 7c3e948

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

justfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,6 @@ STABLE_TOOLCHAIN := "1.88.0"
100100
if ! grep -q '^version = "{{version}}"' {{crate}}/Cargo.toml; then \
101101
echo "tag: Cargo.toml version mismatch"; exit 1; fi
102102
# 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}}
103+
echo "Adding release tag {{crate}}-v{{version}} and pushing to {{remote}}..."
104+
git tag -a {{crate}}-v{{version}} -m "Release v{{version}} for {{crate}}"
105+
git push {{remote}} {{crate}}-v{{version}}

0 commit comments

Comments
 (0)