diff --git a/build-release.sh b/build-release.sh index 9fd11d9..ce24e00 100755 --- a/build-release.sh +++ b/build-release.sh @@ -3,7 +3,7 @@ set -ueo pipefail readonly GIT_HASH="$(git rev-parse --short HEAD)" readonly LDFLAGS="-X main.gitHash=${GIT_HASH} -w -s" -readonly VERSION="1.1.0-${GIT_HASH}" +readonly VERSION="1.2.0-${GIT_HASH}" function binary-name() { local os="${1}" diff --git a/kontemplate.frm b/kontemplate.frm index 4209c16..59b5191 100644 --- a/kontemplate.frm +++ b/kontemplate.frm @@ -73,7 +73,7 @@ action: echo 'nameserver 8.8.8.8' > /etc/resolv.conf apt-get update && apt-get install -y git ca-certificates mkdir -p /go/src/github.com/tazjin - git clone --single-branch --branch v1.1.0 https://github.com/tazjin/kontemplate /go/src/github.com/tazjin/kontemplate + git clone --single-branch --branch v1.2.0 https://github.com/tazjin/kontemplate /go/src/github.com/tazjin/kontemplate cd /go/src/github.com/tazjin/kontemplate ./build-release.sh build outputs: diff --git a/main.go b/main.go index fe23115..0ff50a8 100644 --- a/main.go +++ b/main.go @@ -11,7 +11,7 @@ import ( "gopkg.in/alecthomas/kingpin.v2" ) -const version string = "1.1.0" +const version string = "1.2.0" // This variable will be initialised by the Go linker during the builder var gitHash string