From 2ab2be8ab6294688194a034387d0c3e3eb5a8c40 Mon Sep 17 00:00:00 2001 From: sami-alajrami Date: Tue, 22 Jan 2019 14:41:34 +0100 Subject: [PATCH] releasing v1.7.3 --- README.md | 6 +++--- docs/cmd_reference.md | 2 +- docs/desired_state_specification.md | 2 +- main.go | 2 +- release-notes.md | 3 ++- 5 files changed, 8 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 49955466..e9ba0ac9 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ --- -version: v1.7.3-rc +version: v1.7.3 --- ![helmsman-logo](docs/images/helmsman.png) @@ -58,9 +58,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.7.3-rc/helmsman_1.7.3-rc_linux_amd64.tar.gz | tar zx +curl -L https://github.com/Praqma/helmsman/releases/download/v1.7.3/helmsman_1.7.3_linux_amd64.tar.gz | tar zx # on MacOS -curl -L https://github.com/Praqma/helmsman/releases/download/v1.7.3-rc/helmsman_1.7.3-rc_darwin_amd64.tar.gz | tar zx +curl -L https://github.com/Praqma/helmsman/releases/download/v1.7.3/helmsman_1.7.3_darwin_amd64.tar.gz | tar zx mv helmsman /usr/local/bin/helmsman ``` diff --git a/docs/cmd_reference.md b/docs/cmd_reference.md index 5c395691..e674f248 100644 --- a/docs/cmd_reference.md +++ b/docs/cmd_reference.md @@ -1,5 +1,5 @@ --- -version: v1.7.2 +version: v1.7.3 --- # CMD reference diff --git a/docs/desired_state_specification.md b/docs/desired_state_specification.md index e08ab86c..14342244 100644 --- a/docs/desired_state_specification.md +++ b/docs/desired_state_specification.md @@ -1,5 +1,5 @@ --- -version: v1.7.3-rc +version: v1.7.3 --- # Helmsman desired state specification diff --git a/main.go b/main.go index b73257f9..69df88c0 100644 --- a/main.go +++ b/main.go @@ -34,7 +34,7 @@ var shouldCleanup bool var skipValidation bool var applyLabels bool var keepUntrackedReleases bool -var appVersion = "v1.7.3-rc" +var appVersion = "v1.7.3" var helmVersion string var kubectlVersion string var dryRun bool diff --git a/release-notes.md b/release-notes.md index 58f13048..a21ffa95 100644 --- a/release-notes.md +++ b/release-notes.md @@ -1,9 +1,10 @@ -# v1.7.3-rc +# v1.7.3 > 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: +- Addition fixes to 1.7.3-rc: PRs #175 #176 #177 #178 - fixing docker images helm verions with and updating dependencies. Issues: #157 #156. PR: #158 #165 - adding `batch` to the RBAC API groups. Issue: #160. PR: #162