Skip to content

Commit

Permalink
releasing v1.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sami-alajrami committed Aug 15, 2019
1 parent 68e7f99 commit 6b62ea3
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
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=v1.11.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=v1.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)

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

Expand Down Expand Up @@ -59,9 +59,9 @@ If you use private helm repos, you will need either `helm-gcs` or `helm-s3` plug
Check the [releases page](https://github.com/Praqma/Helmsman/releases) for the different versions.
```
# on Linux
curl -L https://github.com/Praqma/helmsman/releases/download/v1.11.0/helmsman_1.11.0_linux_amd64.tar.gz | tar zx
curl -L https://github.com/Praqma/helmsman/releases/download/v1.12.0/helmsman_1.12.0_linux_amd64.tar.gz | tar zx
# on MacOS
curl -L https://github.com/Praqma/helmsman/releases/download/v1.11.0/helmsman_1.11.0_darwin_amd64.tar.gz | tar zx
curl -L https://github.com/Praqma/helmsman/releases/download/v1.12.0/helmsman_1.12.0_darwin_amd64.tar.gz | tar zx
mv helmsman /usr/local/bin/helmsman
```
Expand Down
3 changes: 3 additions & 0 deletions docs/cmd_reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ This lists available CMD options in Helmsman:
`--no-env-subst`
turn off environment substitution globally.

`no-env-values-subst`
turn off environment substitution in values files only.

`--no-fancy`
don't display the banner and don't use colors.

Expand Down
2 changes: 1 addition & 1 deletion docs/desired_state_specification.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
version: v1.11.0
version: v1.12.0
---

# Helmsman desired state specification
Expand Down
2 changes: 1 addition & 1 deletion init.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ func init() {
flag.BoolVar(&suppressDiffSecrets, "suppress-diff-secrets", false, "don't show secrets in helm diff output.")
flag.IntVar(&diffContext, "diff-context", -1, "number of lines of context to show around changes in helm diff output")
flag.BoolVar(&noEnvSubst, "no-env-subst", false, "turn off environment substitution globally")
flag.BoolVar(&noEnvValuesSubst, "no-env-values-subst", false, "turn off environment substitution in values files")
flag.BoolVar(&noEnvValuesSubst, "no-env-values-subst", false, "turn off environment substitution in values files only")
flag.BoolVar(&updateDeps, "update-deps", false, "run 'helm dep up' for local chart")
flag.BoolVar(&forceUpgrades, "force-upgrades", false, "use --force when upgrading helm releases. May cause resources to be recreated.")

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ var nsOverride string
var skipValidation bool
var applyLabels bool
var keepUntrackedReleases bool
var appVersion = "v1.11.0"
var appVersion = "v1.12.0"
var helmVersion string
var kubectlVersion string
var dryRun bool
Expand Down
11 changes: 4 additions & 7 deletions release-notes.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
# v1.11.0
# v1.12.0

> If you are already using an older version of Helmsman than v1.4.0-rc, please read the changes below carefully and follow the upgrade guide [here](docs/migrating_to_v1.4.0-rc.md)
# Fixes and improvements:
- Consider `--target` when validating helm charts. PR#269
- Fix overriding stable repo with a custom one. PR#271
- Add start and finish logs when deploying charts. PR#266
- Fix chart version validations and support wildcard `*` versions. PRs #283 #284

# New features:
- adding `--force-upgrades` option [ changes default upgrade behaviour]. PR#273
- adding `--update-deps` option for local charts dependency update before use. PR#272

- support specifying `--history-max` tiller parameter in the DSF. PR #282
- adding `no-env-values-subst` flag to allow disabling environment variables substitution in values files only. PR #281

0 comments on commit 6b62ea3

Please sign in to comment.