From 010fbfdff666b7c304ac8bf3a49dbc0613de5249 Mon Sep 17 00:00:00 2001 From: Maho Takara Date: Thu, 13 Jun 2024 07:12:52 +0000 Subject: [PATCH] Bump version to 0.21.1 --- CHANGELOG.md | 11 ++++++++--- kustomization.yaml | 2 +- version.go | 2 +- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b3cdaaec..e8cf945e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] -## [0.21.0] - 2024-06-13 +## [0.21.1] - 2024-06-13 ### Notable changed: Due to an update of the github.com/aws/aws-sdk-go-v2 library, users must specify the region of the bucket in their BackupPolicy if the bucketConfig.backendType is s3 or not specified. If the region is not specified, the backup/restore job will crash. @@ -27,6 +27,11 @@ ref: aws/aws-sdk-go-v2#2502 - Update go.mod for the latest moco-agent [#690](https://github.com/cybozu-go/moco/pull/690) +## 0.21.0 - 2024-06-13 + +This release was canceled due to occur conflict. + + ## [0.20.2] - 2024-03-08 ### Fixed @@ -588,8 +593,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.21.0...HEAD -[0.21.0]: https://github.com/cybozu-go/moco/compare/v0.20.2...v0.21.0 +[Unreleased]: https://github.com/cybozu-go/moco/compare/v0.21.1...HEAD +[0.21.1]: https://github.com/cybozu-go/moco/compare/v0.20.2...v0.21.1 [0.20.2]: https://github.com/cybozu-go/moco/compare/v0.20.1...v0.20.2 [0.20.1]: https://github.com/cybozu-go/moco/compare/v0.20.0...v0.20.1 [0.20.0]: https://github.com/cybozu-go/moco/compare/v0.19.0...v0.20.0 diff --git a/kustomization.yaml b/kustomization.yaml index 5b0fc944..32f9668f 100644 --- a/kustomization.yaml +++ b/kustomization.yaml @@ -3,4 +3,4 @@ resources: images: - name: ghcr.io/cybozu-go/moco - newTag: 0.21.0 + newTag: 0.21.1 diff --git a/version.go b/version.go index 4708394a..7ec52f42 100644 --- a/version.go +++ b/version.go @@ -2,7 +2,7 @@ package moco const ( // Version is the MOCO version - Version = "0.21.0" + Version = "0.21.1" // FluentBitImage is the image for slow-log sidecar container. FluentBitImage = "ghcr.io/cybozu-go/moco/fluent-bit:3.0.2.1"