From 53f2470f2c161fa42d39cb9ff33331cbb8202d7b Mon Sep 17 00:00:00 2001 From: terasihma Date: Fri, 2 Feb 2024 05:27:20 +0000 Subject: [PATCH] Bump version to 2.5.2 --- CHANGELOG.md | 11 ++++++++++- v2/kustomization.yaml | 2 +- v2/version.go | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fa97d245..9fe1d315 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [2.5.2] - 2024-02-02 + +### Changed + +- Fix to avoid adding FoU devices for pods that don't use its egress (#265) +- Remove a log for v1 migration error (#266) +- Refactor egress watcher related logs (#267) + ## [2.5.1] - 2023-11-27 ### Changed @@ -219,7 +227,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.5.1...HEAD +[Unreleased]: https://github.com/cybozu-go/coil/compare/v2.5.2...HEAD +[2.5.2]: https://github.com/cybozu-go/coil/compare/v2.5.1...v2.5.2 [2.5.1]: https://github.com/cybozu-go/coil/compare/v2.5.0...v2.5.1 [2.5.0]: https://github.com/cybozu-go/coil/compare/v2.4.0...v2.5.0 [2.4.0]: https://github.com/cybozu-go/coil/compare/v2.3.0...v2.4.0 diff --git a/v2/kustomization.yaml b/v2/kustomization.yaml index 45975700..3b61ff3b 100644 --- a/v2/kustomization.yaml +++ b/v2/kustomization.yaml @@ -1,6 +1,6 @@ images: - name: coil - newTag: 2.5.1 + newTag: 2.5.2 newName: ghcr.io/cybozu-go/coil resources: diff --git a/v2/version.go b/v2/version.go index 2edde68b..1734ec90 100644 --- a/v2/version.go +++ b/v2/version.go @@ -5,7 +5,7 @@ import ( "strings" ) -const version = "2.5.1" +const version = "2.5.2" // Version returns the semantic versioning string of Coil. func Version() string {