about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@gmail.com>2017-05-18T17·37+0200
committerVincent Ambo <tazjin@gmail.com>2017-05-18T17·41+0200
commitf79b261079336cd36bc923e8cf7f35f7295820ce (patch)
treec8543211c23ea6d84ef6345a9ae25d18c7bd1249
parentaadea2f698fedf5423184b854913d126a6219fb5 (diff)
chore: Version bump to 1.0.2
-rwxr-xr-xbuild-release.sh4
-rw-r--r--kontemplate.frm2
-rw-r--r--main.go2
3 files changed, 3 insertions, 5 deletions
diff --git a/build-release.sh b/build-release.sh
index 32eefaf39f..7f82db2233 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.0.1-${GIT_HASH}"
+readonly VERSION="1.0.2-${GIT_HASH}"
 
 function build-for() {
     local os="${1}"
@@ -18,8 +18,6 @@ function build-for() {
         -ldflags "${LDFLAGS}" \
         -o "${target}/kontemplate" \
         -tags netgo
-
-    
 }
 
 function sign-for() {
diff --git a/kontemplate.frm b/kontemplate.frm
index 2e200ccb03..e8e1ff390b 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.0.1 https://github.com/tazjin/kontemplate /go/src/github.com/tazjin/kontemplate
+      git clone --single-branch --branch v1.0.2 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 3a0febbb0a..033f2b5ca8 100644
--- a/main.go
+++ b/main.go
@@ -11,7 +11,7 @@ import (
 	"gopkg.in/alecthomas/kingpin.v2"
 )
 
-const version string = "1.0.1"
+const version string = "1.0.2"
 
 // This variable will be initialised by the Go linker during the builder
 var gitHash string