diff options
author | Vincent Ambo <tazjin@gmail.com> | 2017-11-04T11·36+0100 |
---|---|---|
committer | Vincent Ambo <github@tazj.in> | 2017-11-04T12·23+0100 |
commit | 7bbc3cc033b8082f7758d4c2713846c8a8aadf59 (patch) | |
tree | 02718caa2fef7cc82aa9dcec7aba001ccf8ad658 | |
parent | bd03e639bfdaf5b8919b66d87c683fcaa6ec0aad (diff) |
Version 1.3.0
This release comes with minor usability improvements and features. * A new 'lookupIPAddr' template function is available for resolving DNS A records in templates. Thanks to @landro for the pull request! * Handling of "non-standard" resource set structures has been improved to result in better error messages and behaviour in several places. Release binaries are signed with GPG key `66F505681DB8F43B` which is verified on my Github profile. -------------- Note: This is the last Kontemplate release that will be written in Go. Rob Pike's art project has proven its point but I believe it is ethically questionable and morally indefensible to continue on this path. You can track #72 for the Rust-rewrite of Kontemplate.
-rwxr-xr-x | build-release.sh | 2 | ||||
-rw-r--r-- | kontemplate.frm | 2 | ||||
-rw-r--r-- | main.go | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/build-release.sh b/build-release.sh index ce24e00fcc88..a8df0ecb6579 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.2.0-${GIT_HASH}" +readonly VERSION="1.3.0-${GIT_HASH}" function binary-name() { local os="${1}" diff --git a/kontemplate.frm b/kontemplate.frm index 59b5191695fc..d6f5b1a1b6e9 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.2.0 https://github.com/tazjin/kontemplate /go/src/github.com/tazjin/kontemplate + git clone --single-branch --branch v1.3.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 a4ab56b052c0..aadc8eaa847f 100644 --- a/main.go +++ b/main.go @@ -11,7 +11,7 @@ import ( "gopkg.in/alecthomas/kingpin.v2" ) -const version string = "1.2.0" +const version string = "1.3.0" // This variable will be initialised by the Go linker during the builder var gitHash string |