chore: Release version 1.1.0
This release features some cleanup and under-the-hood changes, as well as "ecosystem-features" that don't directly affect the way Kontemplate itself functions. * Resource-sets are now passed on to kubectl in individual invocations. This means that kubectl errors can be scoped to individual resource set files and issues such as #51 are less of a problem. * A Dockerfile is provided and published at `tazjin:kontemplate` on Docker Hub. This image contains `kontemplate`, `kubectl` and `pass` and can be used - for example - as an image for a step in a CI system. * Kontemplate is now available on Homebrew, check the README for installation instructions. * If different resource sets don't contain `---` separators in YAML, `kubectl` calls will no longer fail. (#51) * Autocompleted trailing slashes in shells are now filtered from include & exclude lists to enhance the CLI experience slightly.
This commit is contained in:
parent
3a2f00f29f
commit
e2be6152f9
3 changed files with 3 additions and 3 deletions
|
@ -3,7 +3,7 @@ set -ueo pipefail
|
||||||
|
|
||||||
readonly GIT_HASH="$(git rev-parse --short HEAD)"
|
readonly GIT_HASH="$(git rev-parse --short HEAD)"
|
||||||
readonly LDFLAGS="-X main.gitHash=${GIT_HASH} -w -s"
|
readonly LDFLAGS="-X main.gitHash=${GIT_HASH} -w -s"
|
||||||
readonly VERSION="1.0.2-${GIT_HASH}"
|
readonly VERSION="1.1.0-${GIT_HASH}"
|
||||||
|
|
||||||
function build-for() {
|
function build-for() {
|
||||||
local os="${1}"
|
local os="${1}"
|
||||||
|
|
|
@ -73,7 +73,7 @@ action:
|
||||||
echo 'nameserver 8.8.8.8' > /etc/resolv.conf
|
echo 'nameserver 8.8.8.8' > /etc/resolv.conf
|
||||||
apt-get update && apt-get install -y git ca-certificates
|
apt-get update && apt-get install -y git ca-certificates
|
||||||
mkdir -p /go/src/github.com/tazjin
|
mkdir -p /go/src/github.com/tazjin
|
||||||
git clone --single-branch --branch v1.0.2 https://github.com/tazjin/kontemplate /go/src/github.com/tazjin/kontemplate
|
git clone --single-branch --branch v1.1.0 https://github.com/tazjin/kontemplate /go/src/github.com/tazjin/kontemplate
|
||||||
cd /go/src/github.com/tazjin/kontemplate
|
cd /go/src/github.com/tazjin/kontemplate
|
||||||
./build-release.sh build
|
./build-release.sh build
|
||||||
outputs:
|
outputs:
|
||||||
|
|
2
main.go
2
main.go
|
@ -11,7 +11,7 @@ import (
|
||||||
"gopkg.in/alecthomas/kingpin.v2"
|
"gopkg.in/alecthomas/kingpin.v2"
|
||||||
)
|
)
|
||||||
|
|
||||||
const version string = "1.0.2"
|
const version string = "1.1.0"
|
||||||
|
|
||||||
// This variable will be initialised by the Go linker during the builder
|
// This variable will be initialised by the Go linker during the builder
|
||||||
var gitHash string
|
var gitHash string
|
||||||
|
|
Loading…
Reference in a new issue