diff --git a/CHANGELOG.md b/CHANGELOG.md index 427cbef..a7dfa5c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## [v0.16.2](https://github.com/tcnksm/ghr/compare/v0.16.1...v0.16.2) - 2023-10-16 +- disable cgo. fixes #154. by @shogo82148 in https://github.com/tcnksm/ghr/pull/155 + ## [v0.16.1](https://github.com/tcnksm/ghr/compare/v0.16.0...v0.16.1) - 2023-10-12 - drop pkg/errors dependency by @Songmu in https://github.com/tcnksm/ghr/pull/148 - Miscellaneous fixes: coding convention fixes and some typo fixes by @itchyny in https://github.com/tcnksm/ghr/pull/149 diff --git a/version.go b/version.go index baf3146..68c76d4 100644 --- a/version.go +++ b/version.go @@ -12,7 +12,7 @@ import ( const Name = "ghr" // Version is application version -const Version string = "0.16.1" +const Version string = "0.16.2" // GitCommit describes latest commit hash. // This is automatically extracted by git describe --always.