diff --git a/CHANGELOG.md b/CHANGELOG.md index e7800e2e3..cf3112052 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,19 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [0.2.0] - 2020-10-07 + +### Added + +- Generate MySQL configuration file with merging configmap resource (#39, #42) +- Add periodic log rotation mechanism (#43) +- Setup MySQL cluster with primary-replica (#50) +- Add Service resources to connect primary and replicas (#52) +- Do failover when a replica becomes unavailable (#53) +- Add token mechanism to call agent APIs (#55) +- Do failover when a primary becomes unavailable (#58) +- Support for Kubernetes 1.18 (#61) + ## [0.1.1] - 2020-06-18 ### Fixed @@ -17,6 +30,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Bootstrap a vanilla MySQL cluster with no replicas (#2). -[Unreleased]: https://github.com/cybozu-go/moco/compare/v0.1.1...HEAD +[Unreleased]: https://github.com/cybozu-go/moco/compare/v0.2.0...HEAD +[0.1.1]: https://github.com/cybozu-go/moco/compare/v0.1.1...v0.2.0 [0.1.1]: https://github.com/cybozu-go/moco/compare/v0.1.0...v0.1.1 [0.1.0]: https://github.com/cybozu-go/moco/compare/5256088a31e70f2d29649b8b69b0c8e208eb1c70...v0.1.0 diff --git a/version.go b/version.go index 8a8842758..d1ac06fb6 100644 --- a/version.go +++ b/version.go @@ -2,5 +2,5 @@ package moco const ( // Version is the MOCO version - Version = "0.1.1" + Version = "0.2.0" )