From 3b8d85e6adc43c0f30893dd5aa038a446ad8ac40 Mon Sep 17 00:00:00 2001 From: Tomoki Sugiura Date: Thu, 6 Jun 2024 16:11:10 +0900 Subject: [PATCH] Bump version to 2.7.0 Signed-off-by: Tomoki Sugiura --- CHANGELOG.md | 9 ++++++++- README.md | 2 +- v2/kustomization.yaml | 2 +- v2/version.go | 2 +- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d33e477..a00b6721 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [2.7.0] - 2024-06-06 + +### Changed + +- Support Kubernetes 1.29 and CNI 1.1.0 (#290) + ## [2.6.1] - 2024-05-28 ### Changed @@ -250,7 +256,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.6.1...HEAD +[Unreleased]: https://github.com/cybozu-go/coil/compare/v2.7.0...HEAD +[2.7.0]: https://github.com/cybozu-go/coil/compare/v2.6.1...v2.7.0 [2.6.1]: https://github.com/cybozu-go/coil/compare/v2.6.0...v2.6.1 [2.6.0]: https://github.com/cybozu-go/coil/compare/v2.5.2...v2.6.0 [2.5.2]: https://github.com/cybozu-go/coil/compare/v2.5.1...v2.5.2 diff --git a/README.md b/README.md index 8030906d..88ab1b9b 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ There are blog articles about Coil: https://blog.kintone.io/archive/category/Coi ## Status -Version 2 is generally available (GA). It conforms to [CNI spec 0.4.0](https://github.com/containernetworking/cni/blob/spec-v0.4.0/SPEC.md). +Version 2 is generally available (GA). It conforms to [CNI spec 1.1.0](https://github.com/containernetworking/cni/blob/spec-v1.1.0/SPEC.md). ## Dependencies diff --git a/v2/kustomization.yaml b/v2/kustomization.yaml index 0378ca1b..a7f9ca96 100644 --- a/v2/kustomization.yaml +++ b/v2/kustomization.yaml @@ -1,6 +1,6 @@ images: - name: coil - newTag: 2.6.1 + newTag: 2.7.0 newName: ghcr.io/cybozu-go/coil resources: diff --git a/v2/version.go b/v2/version.go index 08c144fa..3b4aab4c 100644 --- a/v2/version.go +++ b/v2/version.go @@ -5,7 +5,7 @@ import ( "strings" ) -const version = "2.6.1" +const version = "2.7.0" // Version returns the semantic versioning string of Coil. func Version() string {