From b88d85ce101b2dd3c30153941f60d603b1782983 Mon Sep 17 00:00:00 2001 From: Tomoki Sugiura Date: Fri, 9 Aug 2024 17:59:05 +0900 Subject: [PATCH] Bump version to 2.7.1 Signed-off-by: Tomoki Sugiura --- CHANGELOG.md | 9 ++++++++- v2/kustomization.yaml | 2 +- v2/version.go | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 61cd6113..4b11d448 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [2.7.2] - 2024-08-09 + +- Add info logs to egress (#298) + +### Changed + ## [2.7.1] - 2024-07-22 ### Changed @@ -264,7 +270,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.1...HEAD +[Unreleased]: https://github.com/cybozu-go/coil/compare/v2.7.2...HEAD +[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 [2.6.1]: https://github.com/cybozu-go/coil/compare/v2.6.0...v2.6.1 diff --git a/v2/kustomization.yaml b/v2/kustomization.yaml index b941ffe8..5acd8001 100644 --- a/v2/kustomization.yaml +++ b/v2/kustomization.yaml @@ -1,6 +1,6 @@ images: - name: coil - newTag: 2.7.1 + newTag: 2.7.2 newName: ghcr.io/cybozu-go/coil resources: diff --git a/v2/version.go b/v2/version.go index dfc1820d..5a229c71 100644 --- a/v2/version.go +++ b/v2/version.go @@ -5,7 +5,7 @@ import ( "strings" ) -const version = "2.7.1" +const version = "2.7.2" // Version returns the semantic versioning string of Coil. func Version() string {