diff --git a/CHANGELOG.md b/CHANGELOG.md index 9dea0eb..7d821b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,25 @@ +## 0.2.3 (2015-10-13) + +### Added + +- Generate `.gitignore` [#31](https://github.com/tcnksm/gcli/pull/31) +- Generate godoc by `go generate` [#24](https://github.com/tcnksm/gcli/pull/24) +- Add demo (`.gif`) [#35](https://github.com/tcnksm/gcli/pull/35), [#36](https://github.com/tcnksm/gcli/pull/36) + +### Deprecated + +- Nothing + +### Removed + +- Nothing + +### Fixed + +- Fix variable name when flag includes [#38](https://github.com/tcnksm/gcli/pull/38) +- Use `go generate` for `go-bindata` [#33](https://github.com/tcnksm/gcli/pull/33) +- Refactoring + ## 0.2.2 (2015-08-31) ### Added diff --git a/version.go b/version.go index 2a12b47..9368699 100644 --- a/version.go +++ b/version.go @@ -5,7 +5,7 @@ const Name = "gcli" // Version is version string of this application. // Version is changed with semantic versioning. -const Version string = "v0.2.2" +const Version string = "v0.2.3" // GitCommit describes latest commit hash. // This value is extracted by git command when building.