Skip to content

Commit

Permalink
release: v3.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
luisdavim committed Aug 28, 2021
1 parent 20c724e commit 2f769b0
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- run:
name: build docker images and push them to dockerhub
command: |
helm_versions=( "v3.4.2" "v3.5.4" "v3.6.2" )
helm_versions=( "v3.4.2" "v3.5.4" "v3.6.3" )
TAG=$(git describe --abbrev=0 --tags)
docker login -u $DOCKER_USER -p $DOCKER_PASS
Expand Down
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v3.7.2
v3.7.3
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG GO_VERSION="1.15.2"
ARG ALPINE_VERSION="3.12"
ARG GLOBAL_KUBE_VERSION="v1.19.8"
ARG GLOBAL_HELM_VERSION="v3.6.2"
ARG GLOBAL_HELM_VERSION="v3.6.3"
ARG GLOBAL_HELM_DIFF_VERSION="v3.1.3"
ARG GLOBAL_SOPS_VERSION="v3.7.1"

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![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)
[![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)

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

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

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

mv helmsman /usr/local/bin/helmsman
```
Expand Down
2 changes: 1 addition & 1 deletion internal/app/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
const (
helmBin = "helm"
kubectlBin = "kubectl"
appVersion = "v3.7.2"
appVersion = "v3.7.3"
tempFilesDir = ".helmsman-tmp"
defaultContextName = "default"
resourcePool = 10
Expand Down
7 changes: 5 additions & 2 deletions release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# v3.7.2
# v3.7.3

## Fixes and improvements

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

0 comments on commit 2f769b0

Please sign in to comment.