Should fix #960. Bumps patchversion

This commit is contained in:
Jguer 2019-06-03 23:39:21 +01:00
parent 06da88778e
commit 86b73689a3
No known key found for this signature in database
GPG Key ID: 09754DBECF21746F
2 changed files with 3 additions and 3 deletions

View File

@ -5,10 +5,10 @@ DESTDIR :=
MAJORVERSION := 9
MINORVERSION ?= 2
PATCHVERSION := 0
PATCHVERSION := 1
VERSION ?= ${MAJORVERSION}.${MINORVERSION}.${PATCHVERSION}
LDFLAGS := -ldflags '-s -w -X main.version=${VERSION}'
LDFLAGS := -gcflags=all=-trimpath=${PWD} -asmflags=all=-trimpath=${PWD} -ldflags=-extldflags=-zrelro -ldflags=-extldflags=-znow -ldflags '-s -w -X main.version=${VERSION}'
MOD := -mod=vendor
export GO111MODULE=on
ARCH := $(shell uname -m)

View File

@ -78,7 +78,7 @@ type Configuration struct {
UseAsk bool `json:"useask"`
}
var version = "9.1.0"
var version = "9.2.1"
// configFileName holds the name of the config file.
const configFileName string = "config.json"