diff --git a/.version b/.version index 03183d52..d1e9cf3b 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -v3.6.11 +v3.7.0 diff --git a/README.md b/README.md index 7ff6e009..33fc9fe8 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.6.11&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.7.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) @@ -61,9 +61,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.6.11/helmsman_3.6.10_linux_amd64.tar.gz | tar zx +curl -L https://github.com/Praqma/helmsman/releases/download/v3.7.0/helmsman_3.6.10_linux_amd64.tar.gz | tar zx # on MacOS -curl -L https://github.com/Praqma/helmsman/releases/download/v3.6.11/helmsman_3.6.10_darwin_amd64.tar.gz | tar zx +curl -L https://github.com/Praqma/helmsman/releases/download/v3.7.0/helmsman_3.6.10_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 2555c359..24a1c5c1 100644 --- a/internal/app/main.go +++ b/internal/app/main.go @@ -8,7 +8,7 @@ import ( const ( helmBin = "helm" kubectlBin = "kubectl" - appVersion = "v3.6.11" + appVersion = "v3.7.0" tempFilesDir = ".helmsman-tmp" defaultContextName = "default" resourcePool = 10 diff --git a/release-notes.md b/release-notes.md index 62c3dc24..19109e2f 100644 --- a/release-notes.md +++ b/release-notes.md @@ -1,10 +1,7 @@ -# v3.6.11 +# v3.7.0 -## Fixes and improvements +## New features -- fix: dont force updates on repo add if the no-update flag is passed -- refactor: cleanup config files -- refactor: use errors instead of bool + string -- fix: the repo name is the fisrt element only -- chore: remove references to deprecated helm repos -- fix: --server-dry-run was deprecated in kubectl 1.18 +- Added support for OCI registries (#612) + - more details in [docs/how_to/helm_repos/oci.md](https://github.com/Praqma/helmsman/blob/master/docs/how_to/helm_repos/oci.md) +- Added support for using `kubectl diff` instead of `helm diff` (#609) - Experimental