Skip to content

Commit 2764fe6

Browse files
committed
Bump version to v0.1.10
1 parent 39202b4 commit 2764fe6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PREVIOUS_TAG ?= $(shell git tag -l | tail -n 1)
2-
TAG=v0.1.9
2+
TAG=v0.1.10
33

44
.PHONY: build install bump tag release update-config test
55

@@ -11,8 +11,9 @@ install: build
1111
sudo install -m 755 dist/roc /usr/local/bin/roc
1212

1313
tag:
14+
git commit -m "Bump version to $(TAG)" Makefile
1415
git tag -a $(TAG) -m "Release $(TAG)"
15-
git push origin $(TAG)
16+
git push origin main && git push origin $(TAG)
1617

1718
test:
1819
go test ./...

0 commit comments

Comments
 (0)