Skip to content

Commit 834bfce

Browse files
authored
fix: ensure relases feature 'v' prefix (#108)
Beginning with release 0.3.16, releases are missing the 'v' prefix, which breaks scripting/automation that expects it. This ensures its presence moving forward. This is a followup to: - #106 (partial fix) - #105 Signed-off-by: Mike Ball <mikedball@gmail.com>
1 parent b85814e commit 834bfce

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@ build: ## build and test
5757
--clean
5858
.PHONY: build
5959

60-
tag: ## create $(VERSION) git tag
61-
echo "creating git tag $(VERSION)"
62-
git tag $(VERSION)
63-
git push origin $(VERSION)
60+
tag: ## create v$(VERSION) git tag
61+
echo "creating git tag v$(VERSION)"
62+
git tag v$(VERSION)
63+
git push origin v$(VERSION)
6464
.PHONY: tag
6565

6666
release: ## release $(VERSION)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.3.18
1+
0.3.19

0 commit comments

Comments
 (0)