diff --git a/CHANGELOG.md b/CHANGELOG.md index fdabb555..e21b6b68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [0.23.2] - 2024-07-01 + +### Fixed +- Do not kill system user [#710](https://github.com/cybozu-go/moco/issues/710) + ## [0.23.1] - 2024-06-25 ### ⚠️ Breaking Changes @@ -615,7 +620,8 @@ The `MySQLCluster` created by MOCO `< v0.5.0` has no compatibility with `>= v0.5 - Bootstrap a vanilla MySQL cluster with no replicas (#2). -[Unreleased]: https://github.com/cybozu-go/moco/compare/v0.23.1...HEAD +[Unreleased]: https://github.com/cybozu-go/moco/compare/v0.23.2...HEAD +[0.23.2]: https://github.com/cybozu-go/moco/compare/v0.23.1...v0.23.2 [0.23.1]: https://github.com/cybozu-go/moco/compare/v0.21.1...v0.23.1 [0.22.1]: https://github.com/cybozu-go/moco/compare/v0.21.1...v0.22.1 [0.21.1]: https://github.com/cybozu-go/moco/compare/v0.20.2...v0.21.1 diff --git a/kustomization.yaml b/kustomization.yaml index f53607b3..4a916e14 100644 --- a/kustomization.yaml +++ b/kustomization.yaml @@ -3,4 +3,4 @@ resources: images: - name: ghcr.io/cybozu-go/moco - newTag: 0.23.1 + newTag: 0.23.2 diff --git a/version.go b/version.go index 8c60202d..1370b471 100644 --- a/version.go +++ b/version.go @@ -2,7 +2,7 @@ package moco const ( // Version is the MOCO version - Version = "0.23.1" + Version = "0.23.2" // FluentBitImage is the image for slow-log sidecar container. FluentBitImage = "ghcr.io/cybozu-go/moco/fluent-bit:3.0.2.1"