From 65652125c64651efa3eec9d2d12ed94f20c6c9ae Mon Sep 17 00:00:00 2001 From: Masayuki Ishii Date: Fri, 3 Dec 2021 07:42:22 +0000 Subject: [PATCH] Bump version to 0.5.0 --- CHANGELOG.md | 16 +++++++++++++++- config/agent/kustomization.yaml | 2 +- config/controller/kustomization.yaml | 2 +- constants.go | 2 +- 4 files changed, 18 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f9aea37..9c63656c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,18 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [0.5.0] - 2021-12-06 + +### Added + +- Support Kubernetes 1.22 (#123) + +### Changed + +- Remove --repository-names option from meows-controller (#113) +- Stop creating the latest tag images (#114) +- Build with go 1.17 (#122) + ## [0.4.2] - 2021-11-18 ### Fixed @@ -20,6 +32,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [0.4.0] - 2021-11-01 ### Added + - Support k8s 1.21 (#76) - Add WorkVolume field to RunnerPodTemplateSec (#82) - Add MaxRunnerPods field to RunnerPoolSpec (#83, #98) @@ -68,7 +81,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.4.2...HEAD +[Unreleased]: https://github.com/cybozu-go/meows/compare/v0.5.0...HEAD +[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 [0.4.1]: https://github.com/cybozu-go/meows/compare/v0.4.0...v0.4.1 [0.4.0]: https://github.com/cybozu-go/meows/compare/v0.3.1...v0.4.0 diff --git a/config/agent/kustomization.yaml b/config/agent/kustomization.yaml index d32c7af3..02ec709b 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.4.2 + newTag: 0.5.0 commonLabels: app.kubernetes.io/name: meows diff --git a/config/controller/kustomization.yaml b/config/controller/kustomization.yaml index a0cd7469..7ee11052 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.4.2 + newTag: 0.5.0 namePrefix: meows- diff --git a/constants.go b/constants.go index 9b041651..2eff358f 100644 --- a/constants.go +++ b/constants.go @@ -2,7 +2,7 @@ package constants const ( // Version is the meows version. - Version = "0.4.2" + Version = "0.5.0" ) // Container names