From 0f57ed0ba895f1da25995b3f5f327472ac8e4b4b Mon Sep 17 00:00:00 2001 From: Jguer Date: Sun, 20 Jan 2019 15:52:21 +0000 Subject: [PATCH] Update to version 9.1.0 --- Makefile | 4 ++-- config.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 82775397..2017e5cb 100644 --- a/Makefile +++ b/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}' diff --git a/config.go b/config.go index 5274b639..fca40474 100644 --- a/config.go +++ b/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"