Skip to content

Commit

Permalink
v1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
godrei committed Jan 10, 2017
1 parent 39332db commit 4b4be05
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 5 deletions.
36 changes: 35 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,40 @@

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

## 1.1.3 (2017 Jan 10)

### Release Notes

* `EnvsYMLModel` model refactored to `EnvsSerializeModel` and got `Normalize` function to make the EnvsYMLModel instance json serializable, even if it was created with yml parser.
* typo fixes

### 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.3/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.2 -> 1.1.3

* [2c42f32] Krisztian Godrei - prepare for 1.1.3 (2017 Jan 10)
* [39332db] Krisztián Gödrei - godeps-update (#117) (2017 Jan 10)
* [0507a11] Viktor Benei - Merge pull request #116 from bitrise-io/feature/serialize-model-fix (2016 Dec 14)
* [a8b2f8f] Viktor Benei - test and doc comment for EnvsSerializeModel.Normalize (2016 Dec 14)
* [97e7667] Viktor Benei - errcheck fix (2016 Dec 14)
* [13d2bd2] Viktor Benei - EnvsYMLModel -> EnvsSerializeModel ; EnvsSerializeModel.Normalize (2016 Dec 14)
* [8c4944e] Krisztián Gödrei - Update CHANGELOG.md (2016 Nov 08)


## 1.1.2 (2016 Nov 08)

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

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

Generated at: 2016 Nov 08
Generated at: 2017 Jan 10
7 changes: 4 additions & 3 deletions bitrise.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@ format_version: 1.3.1
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git

trigger_map:
- pattern: "*"
is_pull_request_allowed: true
- push_branch: "*"
workflow: ci
- pull_request_source_branch: "*"
workflow: ci

app:
envs:
- RELEASE_VERSION: 1.1.2
- RELEASE_VERSION: 1.1.3
- BIN_NAME: envman
- GITHUB_RELEASES_URL: https://github.com/bitrise-io/${BIN_NAME}/releases

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.2"
const VERSION = "1.1.3"

0 comments on commit 4b4be05

Please sign in to comment.