diff --git a/.circleci/config.yml b/.circleci/config.yml index 1b2c8bfe..5933c71f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -36,7 +36,7 @@ jobs: - run: name: build docker images and push them to dockerhub command: | - helm_versions=( "v3.7.2" "v3.8.2" "v3.9.2" ) + helm_versions=( "v3.7.2" "v3.8.2" "v3.9.4" ) TAG=$(git describe --abbrev=0 --tags) docker login -u $DOCKER_USER -p $DOCKER_PASS diff --git a/.version b/.version index 017d61fc..5ef3202e 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -v3.13.0 +v3.14.0 diff --git a/Dockerfile b/Dockerfile index 159a58a7..d61de0aa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ -ARG GO_VERSION="1.18.2" +ARG GO_VERSION="1.18.5" ARG ALPINE_VERSION="3.15" ARG GLOBAL_KUBE_VERSION="v1.23.6" -ARG GLOBAL_HELM_VERSION="v3.9.0" +ARG GLOBAL_HELM_VERSION="v3.9.4" ARG GLOBAL_HELM_DIFF_VERSION="v3.5.0" ARG GLOBAL_HELM_GCS_VERSION="0.3.21" ARG GLOBAL_HELM_S3_VERSION="v0.10.0" diff --git a/README.md b/README.md index 99cc2efa..e006144e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![GitHub version](https://d25lcipzij17d.cloudfront.net/badge.svg?id=gh&type=6&v=v3.13.1&x2=0)](https://github.com/Praqma/helmsman/releases) [![CircleCI](https://circleci.com/gh/Praqma/helmsman/tree/master.svg?style=svg)](https://circleci.com/gh/Praqma/helmsman/tree/master) +[![GitHub version](https://d25lcipzij17d.cloudfront.net/badge.svg?id=gh&type=6&v=v3.14.0&x2=0)](https://github.com/Praqma/helmsman/releases) [![CircleCI](https://circleci.com/gh/Praqma/helmsman/tree/master.svg?style=svg)](https://circleci.com/gh/Praqma/helmsman/tree/master) ![helmsman-logo](docs/images/helmsman.png) diff --git a/internal/app/main.go b/internal/app/main.go index 2a78f534..bfe50109 100644 --- a/internal/app/main.go +++ b/internal/app/main.go @@ -8,7 +8,7 @@ import ( const ( helmBin = "helm" kubectlBin = "kubectl" - appVersion = "v3.13.1" + appVersion = "v3.14.0" tempFilesDir = ".helmsman-tmp" defaultContextName = "default" resourcePool = 10 diff --git a/release-notes.md b/release-notes.md index f3d13a4a..e7310917 100644 --- a/release-notes.md +++ b/release-notes.md @@ -1,7 +1,10 @@ -# v3.13.1 +# v3.14.0 ## New feature +- Add support for Just-Insane/helm-vault plugin + ## Fixes and improvements -- Fix .helmsman-tmp not being removed after execution is done (#693) +- Exit when env variables substitution fails (#704) +- Updated dependencies