From 43eb54f956423a82bf9f67cfefb9e58271d04dd9 Mon Sep 17 00:00:00 2001 From: Mateusz Kubaczyk Date: Mon, 3 Feb 2020 13:07:32 +0100 Subject: [PATCH] Release v3.1.0 --- .circleci/config.yml | 3 +++ .version | 2 +- internal/app/main.go | 2 +- release-notes.md | 14 ++++++++------ 4 files changed, 13 insertions(+), 8 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index c8037cbf..8a09624f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -49,6 +49,9 @@ jobs: docker build -t praqma/helmsman:$TAG-helm-v3.0.2 --build-arg HELM_VERSION=v3.0.2 . --no-cache docker push praqma/helmsman:$TAG-helm-v3.0.2 + docker build -t praqma/helmsman:$TAG-helm-v3.0.3 --build-arg HELM_VERSION=v3.0.3 . --no-cache + docker push praqma/helmsman:$TAG-helm-v3.0.3 + workflows: version: 2 build-test-push-release: diff --git a/.version b/.version index 96506fd2..6c8dc7eb 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -v3.0.2 +v3.1.0 diff --git a/internal/app/main.go b/internal/app/main.go index f710195e..f3ee921d 100644 --- a/internal/app/main.go +++ b/internal/app/main.go @@ -6,7 +6,7 @@ import ( const ( helmBin = "helm" - appVersion = "v3.0.2" + appVersion = "v3.1.0" tempFilesDir = ".helmsman-tmp" defaultContextName = "default" resourcePool = 10 diff --git a/release-notes.md b/release-notes.md index df341552..d2ff4166 100644 --- a/release-notes.md +++ b/release-notes.md @@ -1,14 +1,16 @@ -# v3.0.2 +# v3.1.0 -This is a bugfix release to support Helm v3. +This is a minor release. It is recommended you read the [Helm 3 migration guide](https://helm.sh/docs/topics/v2_v3_migration/) before using this release. > Starting from Helmsman v3.0.0 GA release, support for Helmsman v1.x will be limited to bug fixes. # Fixes and improvements: -- Add concurrency limit on goroutines for getting release state and decision makers; PR #395 -- Add second 'Updated' time layout to parser for release state; PR #393 -- Fix unmarshal issue for quoted version in Chart.yaml; PR #389 +- Add helm v3.0.3 to Docker images built +- Fix multiple versions of chart found in the helm repositories; PR #397 +- Get existing helm repos first before adding new ones from DSF in order to limit actions to be taken; PR #403 +- Enhance the way -target flag checks releases states; PR #405 +- Take advantage of enhancements in -target flag flow for -group flags; PR #407 # New features: -None, bug fix release +None