diff --git a/CHANGELOG.md b/CHANGELOG.md index 3952b063..cd6a6c4c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [0.6.1] - 2022-01-25 + +### Fixed + +- Fixed a bug that the meows-controller does not delete finished runner pods immediately. (#134) + ## [0.6.0] - 2022-01-11 ### Changed @@ -92,7 +98,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.6.0...HEAD +[Unreleased]: https://github.com/cybozu-go/meows/compare/v0.6.1...HEAD +[0.6.1]: https://github.com/cybozu-go/meows/compare/v0.6.0...v0.6.1 [0.6.0]: https://github.com/cybozu-go/meows/compare/v0.5.0...v0.6.0 [0.5.0]: https://github.com/cybozu-go/meows/compare/v0.4.2...v0.5.0 [0.4.2]: https://github.com/cybozu-go/meows/compare/v0.4.1...v0.4.2 diff --git a/config/agent/kustomization.yaml b/config/agent/kustomization.yaml index 908b3e30..4a4cca3d 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.6.0 + newTag: 0.6.1 commonLabels: app.kubernetes.io/name: meows diff --git a/config/controller/kustomization.yaml b/config/controller/kustomization.yaml index 3226d3c6..5197dd84 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.6.0 + newTag: 0.6.1 namePrefix: meows- diff --git a/constants.go b/constants.go index 9a6b73a1..8f5b0332 100644 --- a/constants.go +++ b/constants.go @@ -2,7 +2,7 @@ package constants const ( // Version is the meows version. - Version = "0.6.0" + Version = "0.6.1" ) // Container names