Skip to content

Commit 582cc99

Browse files
committed
version bump
1 parent ecdde0c commit 582cc99

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

Makefile

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION := v1.0.0-pre
1+
VERSION := v1.0.0
22
NAME := glutton
33
BUILDSTRING := $(shell git log --pretty=format:'%h' -n 1)
44
VERSIONSTRING := $(NAME) version $(VERSION)+$(BUILDSTRING)
@@ -8,6 +8,15 @@ LDFLAGS := "-X \"main.VERSION=$(VERSIONSTRING)\" -X \"main.BUILDDATE=$(BUILDDATE
88

99
.PHONY: all test clean build
1010

11+
.PHONY: tag
12+
tag:
13+
git tag $(VERSION)
14+
git push origin --tags
15+
16+
.PHONY: upx
17+
upx:
18+
cd bin; find . -type f -exec upx "{}" \;
19+
1120
default: build
1221

1322
build:

0 commit comments

Comments
 (0)