From 612540b1b38f7eb0915dfe917c07f19fb86f6ca3 Mon Sep 17 00:00:00 2001 From: Max Claus Nunes Date: Sat, 8 Sep 2018 10:49:30 -0300 Subject: [PATCH] Hardcode gaper version --- cmd/gaper/main.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cmd/gaper/main.go b/cmd/gaper/main.go index 1b06ca2..3908c2a 100644 --- a/cmd/gaper/main.go +++ b/cmd/gaper/main.go @@ -9,7 +9,10 @@ import ( // build info var ( - version = "dev" + // keep the version hardcoded because on installing it through "go get/install" + // it doesn't apply the build tags to override it. So, it is make easier for + // people using in that case to find out which version they are using + version = "1.0.1-dev" ) var logger = gaper.NewLogger("gaper")