From 4994fe9c98df5e9bc6008a848b80d8949bea8f0d Mon Sep 17 00:00:00 2001 From: morimoto-cybozu Date: Wed, 11 Nov 2020 08:07:29 +0000 Subject: [PATCH] Bump version to 0.3.1 --- CHANGELOG.md | 18 +++++++++++++++++- version.go | 2 +- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0265be23f..f97ef4980 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,21 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [0.3.1] - 2020-11-11 + +### Added + +- Add support for [klog](https://github.com/kubernetes/klog) options to `kubectl-moco` plugin (#110). +- Add `logRotationSecurityContext` field to `MySQLCluster` CRD to give PodSecurityContext for the log rotation CronJob (#111). + +### Fixed + +- Fix the location of an annotation in the deployment manifest (#107). +- Fix the behavior of `-it` option for `kubectl-moco` plugin (#109). +- Fix the default value of `-u` option for `kubectl-moco` plugin (#109). +- Add `moco-` prefix to the names in the deployment manifest (#112). **You need to delete `moco-controller-manager` Deployment to apply the updated manifest.** +- Remove the resource limits for the controller from the deployment manifest (#115). + ## [0.3.0] - 2020-11-05 ### Added @@ -46,7 +61,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.3.0...HEAD +[Unreleased]: https://github.com/cybozu-go/moco/compare/v0.3.1...HEAD +[0.3.1]: https://github.com/cybozu-go/moco/compare/v0.3.0...v0.3.1 [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 diff --git a/version.go b/version.go index 8c045ed4f..770a724de 100644 --- a/version.go +++ b/version.go @@ -2,5 +2,5 @@ package moco const ( // Version is the MOCO version - Version = "0.3.0" + Version = "0.3.1" )