about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@gmail.com>2018-05-08T09·27+0200
committerVincent Ambo <github@tazj.in>2018-05-08T09·32+0200
commitc68518d6c9cceb4e8585cb512b8818ce252ceac3 (patch)
treeee3cb4014d393b8247a8f60b8443141540339228
parentea297abe1d841967cc43599e07e7c032653264ee (diff)
chore: Bump version to 1.5.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 c2ca64d33937..97fcf75d8258 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.4.0-${GIT_HASH}"
+readonly VERSION="1.5.0-${GIT_HASH}"
 
 function binary-name() {
     local os="${1}"
diff --git a/main.go b/main.go
index b0117876cedd..13aabd248d2d 100644
--- a/main.go
+++ b/main.go
@@ -26,7 +26,7 @@ import (
 	"gopkg.in/alecthomas/kingpin.v2"
 )
 
-const version string = "1.4.0"
+const version string = "1.5.0"
 
 // This variable will be initialised by the Go linker during the builder
 var gitHash string