From ad26dfb1bd19f55cb8c5aed383d1a39a38640459 Mon Sep 17 00:00:00 2001 From: Yusuke Suzuki Date: Thu, 29 Jul 2021 16:08:56 +0900 Subject: [PATCH] Bump version to 0.10.5 --- CHANGELOG.md | 13 ++++++++++++- kustomization.yaml | 2 +- version.go | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a81bbc2d..7d1d91e2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,16 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [0.10.5] - 2021-07-29 + +### Changed +- Create ServiceAccount for moco controller (#281) +- Change LICENSE from MIT to Apache 2 (#291) + +### Fixed +- Random failure when restoring a database (#284) +- Failed to restore data due to missing PROXY privilege (#287) + ## [0.10.4] - 2021-07-07 ### Fixed @@ -232,7 +242,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.10.4...HEAD +[Unreleased]: https://github.com/cybozu-go/moco/compare/v0.10.5...HEAD +[0.10.5]: https://github.com/cybozu-go/moco/compare/v0.10.4...v0.10.5 [0.10.4]: https://github.com/cybozu-go/moco/compare/v0.10.3...v0.10.4 [0.10.3]: https://github.com/cybozu-go/moco/compare/v0.10.2...v0.10.3 [0.10.2]: https://github.com/cybozu-go/moco/compare/v0.10.1...v0.10.2 diff --git a/kustomization.yaml b/kustomization.yaml index d8fe1c041..be2620197 100644 --- a/kustomization.yaml +++ b/kustomization.yaml @@ -3,4 +3,4 @@ resources: images: - name: ghcr.io/cybozu-go/moco - newTag: 0.10.4 + newTag: 0.10.5 diff --git a/version.go b/version.go index 9fa103645..368a04298 100644 --- a/version.go +++ b/version.go @@ -2,7 +2,7 @@ package moco const ( // Version is the MOCO version - Version = "0.10.4" + Version = "0.10.5" // FluentBitImage is the image for slow-log sidecar container. FluentBitImage = "quay.io/cybozu/fluent-bit:1.7.8.1"