diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c8ba4882..087f5a08a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [0.9.2] - 2021-06-01 + +### Changed +- Fix RBAC for BackupPolicy (#258) + ## [0.9.1] - 2021-05-31 ### Changed @@ -175,7 +180,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.9.1...HEAD +[Unreleased]: https://github.com/cybozu-go/moco/compare/v0.9.2...HEAD +[0.9.2]: https://github.com/cybozu-go/moco/compare/v0.9.1...v0.9.2 [0.9.1]: https://github.com/cybozu-go/moco/compare/v0.9.0...v0.9.1 [0.9.0]: https://github.com/cybozu-go/moco/compare/v0.8.3...v0.9.0 [0.8.3]: https://github.com/cybozu-go/moco/compare/v0.8.2...v0.8.3 diff --git a/config/rbac/kustomization.yaml b/config/rbac/kustomization.yaml index e493ad686..140ed2049 100644 --- a/config/rbac/kustomization.yaml +++ b/config/rbac/kustomization.yaml @@ -5,3 +5,5 @@ resources: - leader_election_role_binding.yaml - mysqlcluster_editor_role.yaml - mysqlcluster_viewer_role.yaml +- backuppolicy_editor_role.yaml +- backuppolicy_viewer_role.yaml diff --git a/kustomization.yaml b/kustomization.yaml index f5512fda9..6a8c18af6 100644 --- a/kustomization.yaml +++ b/kustomization.yaml @@ -3,4 +3,4 @@ resources: images: - name: ghcr.io/cybozu-go/moco - newTag: 0.9.1 + newTag: 0.9.2 diff --git a/version.go b/version.go index a2bee71e6..1daedc53a 100644 --- a/version.go +++ b/version.go @@ -2,7 +2,7 @@ package moco const ( // Version is the MOCO version - Version = "0.9.1" + Version = "0.9.2" // FluentBitImage is the image for slow-log sidecar container. FluentBitImage = "quay.io/cybozu/fluent-bit:1.7.5.1"