about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@gmail.com>2018-06-09T19·30+0200
committerVincent Ambo <github@tazj.in>2018-06-09T19·34+0200
commit97bef90387261d5e93c3bf8668ec55667b7fa2e0 (patch)
treee8b98f14a837f2215fa21e1da2cd71f64df95fcb
parentc91cb21f70bbd4550bf216e64136816b42145392 (diff)
chore: Bump version to 1.6.0
-rwxr-xr-xbuild-release.sh2
-rw-r--r--main.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/build-release.sh b/build-release.sh
index 97fcf75d82..445ebec581 100755
--- a/build-release.sh
+++ b/build-release.sh
@@ -12,7 +12,7 @@ set -ueo pipefail
 
 readonly GIT_HASH="$(git rev-parse --short HEAD)"
 readonly LDFLAGS="-X main.gitHash=${GIT_HASH} -w -s"
-readonly VERSION="1.5.0-${GIT_HASH}"
+readonly VERSION="1.6.0-${GIT_HASH}"
 
 function binary-name() {
     local os="${1}"
diff --git a/main.go b/main.go
index 0ca8de428e..a943976195 100644
--- a/main.go
+++ b/main.go
@@ -26,7 +26,7 @@ import (
 	"gopkg.in/alecthomas/kingpin.v2"
 )
 
-const version string = "1.5.0"
+const version string = "1.6.0"
 
 // This variable will be initialised by the Go linker during the builder
 var gitHash string