From 9f1ea20e04d3ddf2e0974f2e1114aa25d71f7f4d Mon Sep 17 00:00:00 2001 From: Luis Davim Date: Sun, 29 Sep 2024 11:34:28 +0100 Subject: [PATCH] release: prepare v3.17.1 --- .version | 2 +- README.md | 6 +++--- internal/app/main.go | 2 +- release-notes.md | 9 +++++---- 4 files changed, 10 insertions(+), 9 deletions(-) diff --git a/.version b/.version index 597e63fe..794341d1 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -v3.17.0 +v3.17.1 diff --git a/README.md b/README.md index 3ed1f6e9..c360485b 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.17.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.17.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) @@ -77,9 +77,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.17.0/helmsman_3.17.0_linux_amd64.tar.gz | tar zx +curl -L https://github.com/Praqma/helmsman/releases/download/v3.17.1/helmsman_3.17.0_linux_amd64.tar.gz | tar zx # on MacOS -curl -L https://github.com/Praqma/helmsman/releases/download/v3.17.0/helmsman_3.17.0_darwin_amd64.tar.gz | tar zx +curl -L https://github.com/Praqma/helmsman/releases/download/v3.17.1/helmsman_3.17.0_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 8bc0852c..92ef8f2b 100644 --- a/internal/app/main.go +++ b/internal/app/main.go @@ -8,7 +8,7 @@ import ( const ( helmBin = "helm" kubectlBin = "kubectl" - appVersion = "v3.17.0" + appVersion = "v3.17.1" tempFilesDir = ".helmsman-tmp" defaultContextName = "default" resourcePool = 10 diff --git a/release-notes.md b/release-notes.md index be70974b..88f7cf25 100644 --- a/release-notes.md +++ b/release-notes.md @@ -1,10 +1,11 @@ -# v3.17.0 +# v3.17.1 ## New feature -- Add support for hiera-eyaml-gkms (#776) -- Add optioned recursive environment variables expansion (#793) +- Allow recursive environment variable expansion (#793) ## Fixes and improvements -- Remove 'priority' field from -spec docs (#781) +- Updated dependencies (dependabot) +- Fixed priorities when loading multiple spec files (#781) +- Improved docs (#807)