From a849965375d2115ded3d8653f42c29f1621e1dce Mon Sep 17 00:00:00 2001 From: Mateusz Kubaczyk <12384536+mkubaczyk@users.noreply.github.com> Date: Mon, 25 Jul 2022 08:32:29 +0200 Subject: [PATCH] Release v3.13.0 --- .circleci/config.yml | 2 +- .version | 2 +- README.md | 2 +- internal/app/main.go | 2 +- release-notes.md | 7 +++---- 5 files changed, 7 insertions(+), 8 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 5f8ca953..1b2c8bfe 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -36,7 +36,7 @@ jobs: - run: name: build docker images and push them to dockerhub command: | - helm_versions=( "v3.7.2" "v3.8.2" "v3.9.0" ) + helm_versions=( "v3.7.2" "v3.8.2" "v3.9.2" ) TAG=$(git describe --abbrev=0 --tags) docker login -u $DOCKER_USER -p $DOCKER_PASS diff --git a/.version b/.version index b0ab92d4..017d61fc 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -v3.12.0 +v3.13.0 diff --git a/README.md b/README.md index 23560742..24132b28 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.12.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.13.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) ![helmsman-logo](docs/images/helmsman.png) diff --git a/internal/app/main.go b/internal/app/main.go index c34ce17d..8e9e3414 100644 --- a/internal/app/main.go +++ b/internal/app/main.go @@ -8,7 +8,7 @@ import ( const ( helmBin = "helm" kubectlBin = "kubectl" - appVersion = "v3.12.0" + appVersion = "v3.13.0" tempFilesDir = ".helmsman-tmp" defaultContextName = "default" resourcePool = 10 diff --git a/release-notes.md b/release-notes.md index d4dd9865..fec582c6 100644 --- a/release-notes.md +++ b/release-notes.md @@ -1,9 +1,8 @@ -# v3.12.0 +# v3.13.0 ## New feature -- Added JSON schema generator for DSF (#675) - ## Fixes and improvements -- Fix -target flag inconsistency between app yaml key and app release name (#678) +- Replace gopkg.in/yaml.v2 with sigs.k8s.io/yaml (#686) +- Get kubectl version by taking json output instead of parsing a string (#688)