Browse Source

Update to version 9.1.0

Jguer 6 years ago
parent
commit
0f57ed0ba8
2 changed files with 3 additions and 3 deletions
  1. 2 2
      Makefile
  2. 1 1
      config.go

+ 2 - 2
Makefile

@@ -4,8 +4,8 @@ PREFIX := /usr/local
 DESTDIR :=
 
 MAJORVERSION := 9
-MINORVERSION ?= 0
-PATCHVERSION := 1
+MINORVERSION ?= 1
+PATCHVERSION := 0
 VERSION ?= ${MAJORVERSION}.${MINORVERSION}.${PATCHVERSION}
 
 LDFLAGS := -ldflags '-s -w -X main.version=${VERSION}'

+ 1 - 1
config.go

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