Skip to content

Commit

Permalink
Merge pull request #200 from godrei/master
Browse files Browse the repository at this point in the history
v 0.9.21
  • Loading branch information
godrei authored Jul 12, 2016
2 parents 4a24916 + e4cf91b commit b2a4a26
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 2 deletions.
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,39 @@

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

## 0.9.21 (2016 Jul 12)

### Release Notes

* Previous version (0.9.20) returned with exit code 0, even if command failed. This version fixes this issue and includes integration tests to catch this in automated tests in the future.

### Install or upgrade

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

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

Then:

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

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

### Release Commits - 0.9.20 -> 0.9.21

* [86b6172] Krisztián Gödrei - prepare for 0.9.21 (2016 Jul 12)
* [4a24916] Krisztián Gödrei - Merge pull request #199 from godrei/exit_status_fix (2016 Jul 12)
* [d8cca3a] Krisztián Gödrei - exist status test (2016 Jul 12)
* [40c8517] Krisztián Gödrei - exist status fix (2016 Jul 12)
* [92830ff] Krisztián Gödrei - Merge branch 'master' of github.com:bitrise-io/stepman (2016 Jul 12)
* [d34225e] Krisztián Gödrei - changelog update (2016 Jul 12)
* [a6b4a3f] Krisztián Gödrei - Merge pull request #198 from godrei/master (2016 Jul 12)


## 0.9.20 (2016 Jul 12)

### Release Notes
Expand Down
2 changes: 1 addition & 1 deletion bitrise.yml
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ workflows:
2, Export RELEASE_VERSION
3, Create binaries
envs:
- RELEASE_VERSION: 0.9.20
- RELEASE_VERSION: 0.9.21
after_run:
- _export_release_version
- create_binaries
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 = "0.9.20"
const VERSION = "0.9.21"

0 comments on commit b2a4a26

Please sign in to comment.