chore(build): Bump version to 1.8.0

This commit is contained in:
Vincent Ambo 2019-09-04 11:22:26 +01:00 committed by Vincent Ambo
parent 7b9ae4831d
commit fad8dfcef6
2 changed files with 2 additions and 2 deletions

View file

@ -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.7.0-${GIT_HASH}"
readonly VERSION="1.8.0-${GIT_HASH}"
function binary-name() {
local os="${1}"

View file

@ -26,7 +26,7 @@ import (
"gopkg.in/alecthomas/kingpin.v2"
)
const version string = "1.7.0"
const version string = "1.8.0"
// This variable will be initialised by the Go linker during the builder
var gitHash string