From ccd1db92bae23d78a7f324246bb71a750b49699f Mon Sep 17 00:00:00 2001 From: UMEZAWA Takeshi Date: Mon, 17 Oct 2022 18:35:07 +0900 Subject: [PATCH] Bump version to 0.9.0 --- CHANGELOG.md | 13 ++++++++++++- config/agent/kustomization.yaml | 2 +- config/controller/kustomization.yaml | 2 +- constants.go | 2 +- 4 files changed, 15 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 992e0e6..a008dd2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,16 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [0.9.0] - 2022-10-17 + +### Added + +- Add denyDisruption field to RunnerPool (#153) + +### Fixed + +- Fix a race condition around metrics handling (#158) + ## [0.8.0] - 2022-07-25 ### Added @@ -130,7 +140,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Implement github-actions-controller at minimal (#1) -[Unreleased]: https://github.com/cybozu-go/meows/compare/v0.8.0...HEAD +[Unreleased]: https://github.com/cybozu-go/meows/compare/v0.9.0...HEAD +[0.9.0]: https://github.com/cybozu-go/meows/compare/v0.8.0...v0.9.0 [0.8.0]: https://github.com/cybozu-go/meows/compare/v0.7.0...v0.8.0 [0.7.0]: https://github.com/cybozu-go/meows/compare/v0.6.2...v0.7.0 [0.6.2]: https://github.com/cybozu-go/meows/compare/v0.6.1...v0.6.2 diff --git a/config/agent/kustomization.yaml b/config/agent/kustomization.yaml index 3732713..4c7db8e 100644 --- a/config/agent/kustomization.yaml +++ b/config/agent/kustomization.yaml @@ -2,7 +2,7 @@ namespace: meows images: - name: quay.io/cybozu/meows-controller - newTag: 0.8.0 + newTag: 0.9.0 commonLabels: app.kubernetes.io/name: meows diff --git a/config/controller/kustomization.yaml b/config/controller/kustomization.yaml index 5c4fa05..e25205e 100644 --- a/config/controller/kustomization.yaml +++ b/config/controller/kustomization.yaml @@ -2,7 +2,7 @@ namespace: meows images: - name: quay.io/cybozu/meows-controller - newTag: 0.8.0 + newTag: 0.9.0 namePrefix: meows- diff --git a/constants.go b/constants.go index 64f23f3..8dbc5d9 100644 --- a/constants.go +++ b/constants.go @@ -2,7 +2,7 @@ package constants const ( // Version is the meows version. - Version = "0.8.0" + Version = "0.9.0" ) // Container names