From b357327d64171eacecd759a28e464071f9e8ef3d Mon Sep 17 00:00:00 2001 From: Masayuki Ishii Date: Fri, 12 Nov 2021 00:57:12 +0000 Subject: [PATCH] Bump version to 0.10.8 --- CHANGELOG.md | 12 +++++++++++- kustomization.yaml | 2 +- version.go | 2 +- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e9754120..bcfbd24a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [0.10.8] - 2021-11-12 + +### Added +- Add Kubernetes 1.22 Support (#338) + +### Fixed +- Fix backup failure due to incorrect port size calculation (#339) +- Fix installation procedure of kubectl-moco (#341) + ## [0.10.7] - 2021-11-02 ### Added @@ -267,7 +276,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.7...HEAD +[Unreleased]: https://github.com/cybozu-go/moco/compare/v0.10.8...HEAD +[0.10.8]: https://github.com/cybozu-go/moco/compare/v0.10.7...v0.10.8 [0.10.7]: https://github.com/cybozu-go/moco/compare/v0.10.6...v0.10.7 [0.10.6]: https://github.com/cybozu-go/moco/compare/v0.10.5...v0.10.6 [0.10.5]: https://github.com/cybozu-go/moco/compare/v0.10.4...v0.10.5 diff --git a/kustomization.yaml b/kustomization.yaml index 650b9f545..39a243150 100644 --- a/kustomization.yaml +++ b/kustomization.yaml @@ -3,4 +3,4 @@ resources: images: - name: ghcr.io/cybozu-go/moco - newTag: 0.10.7 + newTag: 0.10.8 diff --git a/version.go b/version.go index ee715b28a..8f36e76e1 100644 --- a/version.go +++ b/version.go @@ -2,7 +2,7 @@ package moco const ( // Version is the MOCO version - Version = "0.10.7" + Version = "0.10.8" // FluentBitImage is the image for slow-log sidecar container. FluentBitImage = "quay.io/cybozu/fluent-bit:1.7.8.1"