diff --git a/CHANGELOG.md b/CHANGELOG.md index e569e07..656226a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [v0.12.0](https://github.com/tcnksm/ghr/compare/v0.11.0...v0.12.0) (2018-08-25) + +* update README.md [#103](https://github.com/tcnksm/ghr/pull/103) ([Songmu](https://github.com/Songmu)) +* Update README with current options [#95](https://github.com/tcnksm/ghr/pull/95) ([scorphus](https://github.com/scorphus)) +* Add go 1.11 to .travis.yml [#102](https://github.com/tcnksm/ghr/pull/102) ([shuheiktgw](https://github.com/shuheiktgw)) +* Add new option to skip execution of ghr if a release with a specified tag already exists [#101](https://github.com/tcnksm/ghr/pull/101) ([shuheiktgw](https://github.com/shuheiktgw)) + ## [v0.11.0](https://github.com/tcnksm/ghr/compare/v0.10.2...v0.11.0) (2018-08-23) * Ready for releasing and do trivial fixed [#100](https://github.com/tcnksm/ghr/pull/100) ([Songmu](https://github.com/Songmu)) diff --git a/version.go b/version.go index 78a5132..21ea7a6 100644 --- a/version.go +++ b/version.go @@ -12,7 +12,7 @@ import ( const Name = "ghr" // Version is application version -const Version string = "0.11.0" +const Version string = "0.12.0" // GitCommit describes latest commit hash. // This is automatically extracted by git describe --always.