From b4e567a7d4cbc3244f9c4817262634f2d7b4e354 Mon Sep 17 00:00:00 2001 From: UMEZAWA Takeshi Date: Thu, 5 Nov 2020 17:43:46 +0900 Subject: [PATCH] Bump version to 0.3.0 --- CHANGELOG.md | 19 ++++++++++++++++++- version.go | 2 +- 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 172884b92..0265be23f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,22 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [0.3.0] - 2020-11-05 + +### Added + +- Use ServiceTemplate. (#65, #92) +- Configure intermediate primary (#74, #87) +- Add metrics for controller (#81) +- Add metrics for agents (#83) +- Add Event recording. (#84) +- kubectl-moco plugin (#93, #95) +- create PodDisruptionBudget (#99) + +### Changed + +- Modify manifests for deployment. (#97) + ## [0.2.0] - 2020-10-07 ### Added @@ -30,7 +46,8 @@ 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.2.0...HEAD +[Unreleased]: https://github.com/cybozu-go/moco/compare/v0.3.0...HEAD +[0.3.0]: https://github.com/cybozu-go/moco/compare/v0.2.0...v0.3.0 [0.2.0]: 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 d1ac06fb6..8c045ed4f 100644 --- a/version.go +++ b/version.go @@ -2,5 +2,5 @@ package moco const ( // Version is the MOCO version - Version = "0.2.0" + Version = "0.3.0" )