From 05dd1653ebce1c85014bcc31c3030123efe548c6 Mon Sep 17 00:00:00 2001 From: Ayush Sobti Date: Sat, 24 Nov 2018 21:05:18 -0800 Subject: [PATCH] Move version number out of Makefile --- Makefile | 2 +- VERSION | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 VERSION diff --git a/Makefile b/Makefile index 0c955a5f..1cea2e20 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ all: test ENVVAR = GOOS=linux GOARCH=amd64 CGO_ENABLED=0 -TAG = v0.2.3 +TAG := $(shell cat VERSION) GOLANGCI_INSTALLED := $(shell which bin/golangci-lint) diff --git a/VERSION b/VERSION new file mode 100644 index 00000000..576b7771 --- /dev/null +++ b/VERSION @@ -0,0 +1 @@ +v0.2.3