From 2df5cca073e34c966e807727d29a4b2046e52c48 Mon Sep 17 00:00:00 2001 From: sami-alajrami Date: Mon, 6 May 2019 10:23:22 +0200 Subject: [PATCH] releasing v1.9.1 --- README.md | 6 +++--- docs/desired_state_specification.md | 2 +- main.go | 2 +- release-notes.md | 9 ++------- 4 files changed, 7 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 0f629ceb..8aafddee 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![GitHub version](https://d25lcipzij17d.cloudfront.net/badge.svg?id=gh&type=6&v=v1.9.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=v1.9.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) @@ -59,9 +59,9 @@ If you use private helm repos, you will need either `helm-gcs` or `helm-s3` plug 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.9.0/helmsman_1.9.0_linux_amd64.tar.gz | tar zx +curl -L https://github.com/Praqma/helmsman/releases/download/v1.9.1/helmsman_1.9.1_linux_amd64.tar.gz | tar zx # on MacOS -curl -L https://github.com/Praqma/helmsman/releases/download/v1.9.0/helmsman_1.9.0_darwin_amd64.tar.gz | tar zx +curl -L https://github.com/Praqma/helmsman/releases/download/v1.9.1/helmsman_1.9.1_darwin_amd64.tar.gz | tar zx mv helmsman /usr/local/bin/helmsman ``` diff --git a/docs/desired_state_specification.md b/docs/desired_state_specification.md index e23aa29f..726af7e0 100644 --- a/docs/desired_state_specification.md +++ b/docs/desired_state_specification.md @@ -1,5 +1,5 @@ --- -version: v1.9.0 +version: v1.9.1 --- # Helmsman desired state specification diff --git a/main.go b/main.go index 7f3310fa..8b5d1799 100644 --- a/main.go +++ b/main.go @@ -33,7 +33,7 @@ var nsOverride string var skipValidation bool var applyLabels bool var keepUntrackedReleases bool -var appVersion = "v1.9.0" +var appVersion = "v1.9.1" var helmVersion string var kubectlVersion string var dryRun bool diff --git a/release-notes.md b/release-notes.md index 0881d695..5bbc62ee 100644 --- a/release-notes.md +++ b/release-notes.md @@ -1,13 +1,8 @@ -# v1.9.0 +# v1.9.1 > 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) # Fixes and improvements: -- Cleanup helm secrets if any. PR #232 -- Add `autoscaling` apiGroup to thelmsman-created Tiller roles. PR #235 -- Set proper stderr and stdout for log streams. PR #239 +- Improving temporary files handling. PR #242 (thanks to @brndnmtthws) -# New features: -- Add -target flag to limit execution to specific app. PR #237 -- Substitute environment variables in helm values/secrets files. PR #240