From d77cf03aef82851ab3da0c4c1134673844faaa50 Mon Sep 17 00:00:00 2001 From: Luis Davim Date: Mon, 25 Jan 2021 12:43:05 +0000 Subject: [PATCH] Preparing release v3.6.4 --- .version | 2 +- README.md | 8 ++++---- internal/app/main.go | 2 +- release-notes.md | 12 +++++------- 4 files changed, 11 insertions(+), 13 deletions(-) diff --git a/.version b/.version index 50dde2d0..5d7c78b1 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -v3.6.3 +v3.6.4 diff --git a/README.md b/README.md index 1851399d..30b81e73 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.3&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.6.4&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.3/helmsman_3.6.3_linux_amd64.tar.gz | tar zx +curl -L https://github.com/Praqma/helmsman/releases/download/v3.6.4/helmsman_3.6.4_linux_amd64.tar.gz | tar zx # on MacOS -curl -L https://github.com/Praqma/helmsman/releases/download/v3.6.3/helmsman_3.6.3_darwin_amd64.tar.gz | tar zx +curl -L https://github.com/Praqma/helmsman/releases/download/v3.6.4/helmsman_3.6.4_darwin_amd64.tar.gz | tar zx mv helmsman /usr/local/bin/helmsman ``` @@ -78,7 +78,7 @@ Helmsman has been packaged in Archlinux under `helmsman-bin` for the latest bina # Documentation -> Documentation for Helmsman v1.x can be found at: https://github.com/Praqma/helmsman/tree/1.x/docs +> Documentation for Helmsman v1.x can be found at: [docs v1.x](https://github.com/Praqma/helmsman/tree/1.x/docs) - [How-Tos](https://github.com/Praqma/helmsman/blob/master/docs/how_to/). diff --git a/internal/app/main.go b/internal/app/main.go index 29d8bc75..29c154fe 100644 --- a/internal/app/main.go +++ b/internal/app/main.go @@ -8,7 +8,7 @@ import ( const ( helmBin = "helm" kubectlBin = "kubectl" - appVersion = "v3.6.3" + appVersion = "v3.6.4" tempFilesDir = ".helmsman-tmp" defaultContextName = "default" resourcePool = 10 diff --git a/release-notes.md b/release-notes.md index a33f4dcb..e4191c53 100644 --- a/release-notes.md +++ b/release-notes.md @@ -1,4 +1,4 @@ -# v3.6.3 +# v3.6.4 If you migrating from Helmsman v1.x, it is recommended you read the [migration guide](https://github.com/Praqma/helmsman/blob/master/docs/how_to/misc/migrate_to_3.md) before using this release. @@ -6,9 +6,7 @@ If you migrating from Helmsman v1.x, it is recommended you read the [migration g ## Fixes and improvements -- Fixed missing diff on chart version change (#557) -- Fixed checking for updates on disabled releases (#557) -- Fixed segmentation fault on slack notifications (#559) -- Fixed failure to remove untracked releases (#566) -- The debug flag is now passed down to the helm commands (#568) -- Improved error reporting (#568) +- Fixed issue when decrypting multiple files would result in an error (#575). +- Fixed issue when resolving hooks paths (#569). +- Added support for MS Teams notifications (#574). +- Updated library dependencies.