Hardcode gaper version

This commit is contained in:
Max Claus Nunes 2018-09-08 10:49:30 -03:00
parent e4d6c94e65
commit 612540b1b3
1 changed files with 4 additions and 1 deletions

View File

@ -9,7 +9,10 @@ import (
// build info // build info
var ( 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") var logger = gaper.NewLogger("gaper")