Skip to content

Commit

Permalink
v1.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
godrei committed Aug 7, 2017
1 parent f291011 commit e914cc7
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 3 deletions.
47 changes: 46 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,51 @@

-----------------

## 1.1.6 (2017 Aug 07)

### Release Notes

__Meta field (`meta`) added to `EnvironmentItemOptionsModel`__

This property of the environment options is used to define extra options without creating a new [envman](https://github.com/bitrise-io/envman) release.

The __bitrise-cli__ does not use `meta` field directly, but other tools can use this property to expand the environment options.

For example the `bitrise.io` website will use the `meta` field to define if secret environment variables should be used in pull request triggered builds or not.

```
.bitrise.secrets.yml
envs:
- MY_SECRET_ENV: secret value
opts:
meta:
is_expose: true
```

### Install or upgrade

To install this version, run the following commands (in a bash shell):

```
curl -fL https://github.com/bitrise-io/envman/releases/download/1.1.6/envman-$(uname -s)-$(uname -m) > /usr/local/bin/envman
```

Then:

```
chmod +x /usr/local/bin/envman
```

That's all, you're ready to call `envman`!

### Release Commits - 1.1.5 -> 1.1.6

* [f291011] Krisztian Godrei - prepare for 1.1.6 (2017 Aug 07)
* [1f04b73] Krisztián Gödrei - meta field added to env model (#124) (2017 Aug 07)
* [318a433] Krisztián Gödrei - fixed EnvsSerializeModel (#123) (2017 Aug 04)


## 1.1.5 (2017 Jul 10)

### Release Notes
Expand Down Expand Up @@ -621,4 +666,4 @@ That's all, you're ready to call `envman`!

-----------------

Generated at: 2017 Jul 10
Generated at: 2017 Aug 07
2 changes: 1 addition & 1 deletion models/models_methods_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ func Test_EnvsSerializeModel_Normalize(t *testing.T) {
- KEY_TWO: second value, with options
opts:
meta:
is_expose: true
is_expose: true
`
var objFromYAML EnvsSerializeModel
require.NoError(t, yaml.Unmarshal([]byte(yamlContent), &objFromYAML))
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package version

// VERSION ...
const VERSION = "1.1.5"
const VERSION = "1.1.6"

0 comments on commit e914cc7

Please sign in to comment.