diff --git a/CHANGELOG.md b/CHANGELOG.md index 8918dba..9f501fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [v0.14.0](https://github.com/tcnksm/ghr/compare/v0.13.0...v0.14.0) (2021-06-15) + +* udpate deps [#134](https://github.com/tcnksm/ghr/pull/134) ([Songmu](https://github.com/Songmu)) +* fix lint warnings [#133](https://github.com/tcnksm/ghr/pull/133) ([shogo82148](https://github.com/shogo82148)) +* Migrate to GitHub Actions [#132](https://github.com/tcnksm/ghr/pull/132) ([shogo82148](https://github.com/shogo82148)) +* Allow use of ENV Varaibles to run tests which upload to github [#130](https://github.com/tcnksm/ghr/pull/130) ([JehandadK](https://github.com/JehandadK)) + ## [v0.13.0](https://github.com/tcnksm/ghr/compare/v0.12.2...v0.13.0) (2019-09-16) * Show the exact `gofmt` command in README [#117](https://github.com/tcnksm/ghr/pull/117) ([roschaefer](https://github.com/roschaefer)) diff --git a/version.go b/version.go index 4ca9b99..6b040a3 100644 --- a/version.go +++ b/version.go @@ -12,7 +12,7 @@ import ( const Name = "ghr" // Version is application version -const Version string = "0.13.0" +const Version string = "0.14.0" // GitCommit describes latest commit hash. // This is automatically extracted by git describe --always.