From e69ffc571fdf0b3613628727dad2e841746184f9 Mon Sep 17 00:00:00 2001 From: terashima Date: Tue, 7 Jan 2025 07:13:49 +0000 Subject: [PATCH] Bump version to 2.8.0 --- CHANGELOG.md | 11 ++++++++++- README.md | 2 +- v2/kustomization.yaml | 2 +- v2/version.go | 2 +- 4 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b11d448..ee7cee9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [2.8.0] - 2025-01-07 + +### Added +- Support k8s 1.30 and dependencies (#301) +- Add conntrack command into the coil image (#305) +- Add egress related metrics (#306) + - See issue [#307](https://github.com/cybozu-go/coil/issues/307) for details + ## [2.7.2] - 2024-08-09 - Add info logs to egress (#298) @@ -270,7 +278,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.7.2...HEAD +[Unreleased]: https://github.com/cybozu-go/coil/compare/v2.8.0...HEAD +[2.8.0]: https://github.com/cybozu-go/coil/compare/v2.7.2...v2.8.0 [2.7.2]: https://github.com/cybozu-go/coil/compare/v2.7.1...v2.7.2 [2.7.1]: https://github.com/cybozu-go/coil/compare/v2.7.0...v2.7.1 [2.7.0]: https://github.com/cybozu-go/coil/compare/v2.6.1...v2.7.0 diff --git a/README.md b/README.md index 88ab1b9b..0e994d2b 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ Version 2 is generally available (GA). It conforms to [CNI spec 1.1.0](https:// ## Dependencies -- Kubernetes Version: 1.25, 1.26, 1.27 +- Kubernetes Version: 1.28, 1.29, 1.30 - Other versions are likely to work, but not tested. - (Optional) Routing software diff --git a/v2/kustomization.yaml b/v2/kustomization.yaml index 5acd8001..38f877c5 100644 --- a/v2/kustomization.yaml +++ b/v2/kustomization.yaml @@ -1,6 +1,6 @@ images: - name: coil - newTag: 2.7.2 + newTag: 2.8.0 newName: ghcr.io/cybozu-go/coil resources: diff --git a/v2/version.go b/v2/version.go index 5a229c71..100a7708 100644 --- a/v2/version.go +++ b/v2/version.go @@ -5,7 +5,7 @@ import ( "strings" ) -const version = "2.7.2" +const version = "2.8.0" // Version returns the semantic versioning string of Coil. func Version() string {