From 46f881de6c42a83077816cacb897cd6518d54481 Mon Sep 17 00:00:00 2001 From: terasihma Date: Mon, 10 Jul 2023 05:56:17 +0000 Subject: [PATCH 1/2] Bump version to 2.4.0 --- CHANGELOG.md | 6 ++++++ v2/kustomization.yaml | 2 +- v2/version.go | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fcddd47f..3ea0e2e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [2.4.0] - 2023-07-10 + +### Added + +- Support k8s 1.26 and update dependencies (#246) + ## [2.3.0] - 2023-02-17 ### Added diff --git a/v2/kustomization.yaml b/v2/kustomization.yaml index 0825022a..9a47db85 100644 --- a/v2/kustomization.yaml +++ b/v2/kustomization.yaml @@ -1,6 +1,6 @@ images: - name: coil - newTag: 2.3.0 + newTag: 2.4.0 newName: ghcr.io/cybozu-go/coil resources: diff --git a/v2/version.go b/v2/version.go index 965fdc5a..55a6ee7a 100644 --- a/v2/version.go +++ b/v2/version.go @@ -5,7 +5,7 @@ import ( "strings" ) -const version = "2.3.0" +const version = "2.4.0" // Version returns the semantic versioning string of Coil. func Version() string { From 69c6af785784d66deaa788a7108d19c7a658ab0d Mon Sep 17 00:00:00 2001 From: terasihma Date: Mon, 10 Jul 2023 07:52:25 +0000 Subject: [PATCH 2/2] update changelog Signed-off-by: terasihma --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ea0e2e1..17e50557 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -199,7 +199,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). Coil version 2 is a complete rewrite of Coil version 1. This is the first release candidate with all the planned features implemented. -[Unreleased]: https://github.com/cybozu-go/coil/compare/v2.3.0...HEAD +[Unreleased]: https://github.com/cybozu-go/coil/compare/v2.4.0...HEAD +[2.4.0]: https://github.com/cybozu-go/coil/compare/v2.3.0...v2.4.0 [2.3.0]: https://github.com/cybozu-go/coil/compare/v2.2.0...v2.3.0 [2.2.0]: https://github.com/cybozu-go/coil/compare/v2.1.4...v2.2.0 [2.1.4]: https://github.com/cybozu-go/coil/compare/v2.1.3...v2.1.4