Skip to content

Commit 6c4a6b0

Browse files
author
Luis Davim
committed
release: v3.9.0
1 parent ebb26ac commit 6c4a6b0

File tree

4 files changed

+8
-20
lines changed

4 files changed

+8
-20
lines changed

.version

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

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.9.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)
1+
[![GitHub version](https://d25lcipzij17d.cloudfront.net/badge.svg?id=gh&type=6&v=v3.9.1&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

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

7777
```sh
7878
# on Linux
79-
curl -L https://github.com/Praqma/helmsman/releases/download/v3.9.0/helmsman_3.9.0_linux_amd64.tar.gz | tar zx
79+
curl -L https://github.com/Praqma/helmsman/releases/download/v3.9.1/helmsman_3.9.1_linux_amd64.tar.gz | tar zx
8080
# on MacOS
81-
curl -L https://github.com/Praqma/helmsman/releases/download/v3.9.0/helmsman_3.9.0_darwin_amd64.tar.gz | tar zx
81+
curl -L https://github.com/Praqma/helmsman/releases/download/v3.9.1/helmsman_3.9.1_darwin_amd64.tar.gz | tar zx
8282

8383
mv helmsman /usr/local/bin/helmsman
8484
```

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.9.0"
11+
appVersion = "v3.9.1"
1212
tempFilesDir = ".helmsman-tmp"
1313
defaultContextName = "default"
1414
resourcePool = 10

release-notes.md

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,9 @@
22

33
## New features
44

5-
- Added Option for checking for available updates for app charts (#640)
6-
- Added option for waiting for pending helm releases (#646)
7-
- Added `arm64` builds (#642) (#647)
5+
- Recursively expand environment variables (#657)
86

97
## Fixes and improvements
108

11-
- Updated dependencies (#641)
12-
- Avoid the extra chart download step for OCI charts (#643)
13-
- Code refactoring (#644)
14-
- Enabled automatic dependency updates through dependabot
15-
16-
## Breaking changes ⚠
17-
18-
- env files loading is now more intuitive (#649)
19-
- Before the default .env file would only be loaded if no env files were explicitly passed through the -e flag, now it will always be loaded first if present
20-
- Before loading env files would not overwrite any env variable that had already been set before, now it does so when loading multiple files if a variable is set more than once the value from the last file to be loaded will take precedence.
21-
- Before the first file would take precedence, now, the last one will.
22-
9+
- Updated dependencies to their latest versions (#653; #654; #655; #658)
10+
- avoid loading the `.env` file twice

0 commit comments

Comments
 (0)