diff --git a/.version b/.version index a4dae046..d82ff335 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -v3.9.1 +v3.10.1 diff --git a/README.md b/README.md index 7bb6dca5..f7cd13fb 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.10.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) +[![GitHub version](https://d25lcipzij17d.cloudfront.net/badge.svg?id=gh&type=6&v=v3.10.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) ![helmsman-logo](docs/images/helmsman.png) @@ -76,9 +76,9 @@ Check the [releases page](https://github.com/Praqma/Helmsman/releases) for the d ```sh # on Linux -curl -L https://github.com/Praqma/helmsman/releases/download/v3.9.1/helmsman_3.9.1_linux_amd64.tar.gz | tar zx +curl -L https://github.com/Praqma/helmsman/releases/download/v3.10.1/helmsman_3.10.1_linux_amd64.tar.gz | tar zx # on MacOS -curl -L https://github.com/Praqma/helmsman/releases/download/v3.9.1/helmsman_3.9.1_darwin_amd64.tar.gz | tar zx +curl -L https://github.com/Praqma/helmsman/releases/download/v3.10.1/helmsman_3.10.1_darwin_amd64.tar.gz | tar zx mv helmsman /usr/local/bin/helmsman ``` diff --git a/internal/app/main.go b/internal/app/main.go index f05b1eb6..4bb791fd 100644 --- a/internal/app/main.go +++ b/internal/app/main.go @@ -8,7 +8,7 @@ import ( const ( helmBin = "helm" kubectlBin = "kubectl" - appVersion = "v3.10.0" + appVersion = "v3.10.1" tempFilesDir = ".helmsman-tmp" defaultContextName = "default" resourcePool = 10 diff --git a/release-notes.md b/release-notes.md index 18c9cb17..30116847 100644 --- a/release-notes.md +++ b/release-notes.md @@ -1,11 +1,5 @@ -# v3.10.0 - -## New features - -- Add -exclude-target and -exclude-groups CLI options (#659) +# v3.10.1 ## Fixes and improvements -- Update go to 1.18 (#664) -- Recursively expand env variables to fix #656 (#657) -- Pin versions of helm plugins in Dockerfile (#660) +- Replaced `godotenv` with `gotenv` to fix the environment variable resolution (#665)