diff --git a/CHANGELOG.md b/CHANGELOG.md index 714c2de9..3cdd081f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## [v0.7.0](https://github.com/yuuki/shawk/compare/v0.6.0...v0.7.0) (2020-04-27) + +* Support for configuration with environment variables [#38](https://github.com/yuuki/shawk/pull/38) ([yuuki](https://github.com/yuuki)) +* Update postgres Docker tag to v11.7 [#34](https://github.com/yuuki/shawk/pull/34) ([renovate[bot]](https://github.com/apps/renovate)) + ## [v0.6.0](https://github.com/yuuki/shawk/compare/v0.5.1...v0.6.0) (2020-04-15) * shawk look: --since and --until option [#37](https://github.com/yuuki/shawk/pull/37) ([yuuki](https://github.com/yuuki)) diff --git a/version/version.go b/version/version.go index 2e935d8f..70b74f6a 100644 --- a/version/version.go +++ b/version/version.go @@ -9,7 +9,7 @@ import ( const name = "shawk" // version is application version. -const version = "0.6.0" +const version = "0.7.0" // commit describes latest git commit hash. // This is automatically extracted by git describe --always.