summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authornytpu <alex@nytpu.com>2021-03-21 07:37:55 -0600
committernytpu <alex@nytpu.com>2021-03-21 07:37:55 -0600
commit197ec225ff12351aea551736bd4504964ccccb4b (patch)
treef5d96952043d742fd9cd70da4af630053c27b8be /Makefile
parent69a7ab13ffb4a3d851e21727683dbed1ccc0e469 (diff)
Bump version
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 57ca017..c190360 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@
NAME := comitium
# will automatically set main.Version with this string
-VERSION ?= 1.2.2
+VERSION ?= 1.2.3
# source dirs & files #
GOSRC := $(shell find . -type f -name '*.go')
@@ -22,9 +22,9 @@ GO ?= go
# purely statically link (useful for cross compiling)
#GO ?= CGO_ENABLED=0 go
GOFLAGS ?=
-GOLDFLAGS ?= -X main.Version=$(VERSION) -X main.Commit=$(COMMIT)
+#GOLDFLAGS ?= -X main.Version=$(VERSION) -X main.Commit=$(COMMIT)
# also strips executable, significantly reduces size
-#GOLDFLAGS ?= -s -w -X main.Version=$(VERSION) -X main.Commit=$(COMMIT)$(GITDIRTY)
+GOLDFLAGS ?= -s -w -X main.Version=$(VERSION) -X main.Commit=$(COMMIT)$(GITDIRTY)
SCDOC ?= scdoc
MKDIR ?= mkdir -p
RM ?= rm -f