diff --git a/README.md b/README.md index 763975ee..787f702d 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ --- -version: v1.6.1 +version: v1.6.2 --- ![helmsman-logo](docs/images/helmsman.png) @@ -26,6 +26,9 @@ To plan and execute the plan: To show debugging details: ``` $ helmsman --debug --apply -f example.toml ``` +To run a dry-run: +``` $ helmsman --debug --dry-run -f example.toml ``` + # Features - **Built for CD**: Helmsman can be used as a docker image or a binary. @@ -46,9 +49,9 @@ To show debugging details: Check the [releases page](https://github.com/Praqma/Helmsman/releases) for the different versions. ``` # on Linux -curl -L https://github.com/Praqma/helmsman/releases/download/v1.6.1/helmsman_1.6.1_linux_amd64.tar.gz | tar zx +curl -L https://github.com/Praqma/helmsman/releases/download/v1.6.2/helmsman_1.6.2_linux_amd64.tar.gz | tar zx # on MacOS -curl -L https://github.com/Praqma/helmsman/releases/download/v1.6.1/helmsman_1.6.1_darwin_amd64.tar.gz | tar zx +curl -L https://github.com/Praqma/helmsman/releases/download/v1.6.2/helmsman_1.6.2_darwin_amd64.tar.gz | tar zx mv helmsman /usr/local/bin/helmsman ``` diff --git a/release-notes.md b/release-notes.md index df6fc6a7..f2e20735 100644 --- a/release-notes.md +++ b/release-notes.md @@ -1,8 +1,10 @@ -# v1.6.1 +# v1.6.2 > If you are already using an older version of Helmsman than v1.4.0-rc, please read the changes below carefully and follow the upgrade guide [here](docs/migrating_to_v1.4.0-rc.md) -- Fixing cluster-wide access problem when checking for untracked releases in restricted clusters. Issue #83. -- Fixing not including releases from existing Tillers in helm state when using useTiller. -- Adding `--no-fancy` option to disable colored output. +- Fixing wrong absolute paths for values files when using `valuesFiles`. Issue #93 +- Adding `--destroy` option. Issue #88 +- Supporting setString in the desired state spec. Issue #84 +- Fixing adding helm repos which contain special characters. Issue #94 (thanks to @epierotto) +