Skip to content

Commit 2f769b0

Browse files
author
Luis Davim
committed
release: v3.7.3
1 parent 20c724e commit 2f769b0

File tree

6 files changed

+12
-9
lines changed

6 files changed

+12
-9
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- run:
3636
name: build docker images and push them to dockerhub
3737
command: |
38-
helm_versions=( "v3.4.2" "v3.5.4" "v3.6.2" )
38+
helm_versions=( "v3.4.2" "v3.5.4" "v3.6.3" )
3939
4040
TAG=$(git describe --abbrev=0 --tags)
4141
docker login -u $DOCKER_USER -p $DOCKER_PASS

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v3.7.2
1+
v3.7.3

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ARG GO_VERSION="1.15.2"
22
ARG ALPINE_VERSION="3.12"
33
ARG GLOBAL_KUBE_VERSION="v1.19.8"
4-
ARG GLOBAL_HELM_VERSION="v3.6.2"
4+
ARG GLOBAL_HELM_VERSION="v3.6.3"
55
ARG GLOBAL_HELM_DIFF_VERSION="v3.1.3"
66
ARG GLOBAL_SOPS_VERSION="v3.7.1"
77

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![GitHub version](https://d25lcipzij17d.cloudfront.net/badge.svg?id=gh&type=6&v=v3.7.2&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)
1+
[![GitHub version](https://d25lcipzij17d.cloudfront.net/badge.svg?id=gh&type=6&v=v3.7.3&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)
22

33
![helmsman-logo](docs/images/helmsman.png)
44

@@ -61,9 +61,9 @@ Check the [releases page](https://github.com/Praqma/Helmsman/releases) for the d
6161

6262
```sh
6363
# on Linux
64-
curl -L https://github.com/Praqma/helmsman/releases/download/v3.7.2/helmsman_3.7.2_linux_amd64.tar.gz | tar zx
64+
curl -L https://github.com/Praqma/helmsman/releases/download/v3.7.3/helmsman_3.7.3_linux_amd64.tar.gz | tar zx
6565
# on MacOS
66-
curl -L https://github.com/Praqma/helmsman/releases/download/v3.7.2/helmsman_3.7.2_darwin_amd64.tar.gz | tar zx
66+
curl -L https://github.com/Praqma/helmsman/releases/download/v3.7.3/helmsman_3.7.3_darwin_amd64.tar.gz | tar zx
6767

6868
mv helmsman /usr/local/bin/helmsman
6969
```

internal/app/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
const (
99
helmBin = "helm"
1010
kubectlBin = "kubectl"
11-
appVersion = "v3.7.2"
11+
appVersion = "v3.7.3"
1212
tempFilesDir = ".helmsman-tmp"
1313
defaultContextName = "default"
1414
resourcePool = 10

release-notes.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1-
# v3.7.2
1+
# v3.7.3
22

33
## Fixes and improvements
44

5-
- fixed an issue with yaml marshalling when merging multiple files
5+
- feat: allow setting helm diff flags (#620)
6+
- fix: the release protection flag should be respected even when destroying (#622)
7+
- fix: Pass error to user if we fail to correctly pull or export oci chart images (#619)
8+
- refactor: code clean up

0 commit comments

Comments
 (0)