From 06757a3202c99d54b203f3ac8719108af81e68a7 Mon Sep 17 00:00:00 2001 From: Tomoki Sugiura Date: Mon, 22 Jul 2024 15:35:08 +0900 Subject: [PATCH] Bump version to 2.7.1 Signed-off-by: Tomoki Sugiura --- 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 a00b6721..61cd6113 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [2.7.1] - 2024-07-22 + +### Changed + +- docs: Remove git-neco (#295) +- Update dependencies (#294) +- Bump google.golang.org/grpc from 1.64.0 to 1.64.1 in /v2 (#293) + ## [2.7.0] - 2024-06-06 ### Changed @@ -256,7 +264,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.0...HEAD +[Unreleased]: https://github.com/cybozu-go/coil/compare/v2.7.1...HEAD +[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 [2.6.0]: https://github.com/cybozu-go/coil/compare/v2.5.2...v2.6.0 diff --git a/v2/kustomization.yaml b/v2/kustomization.yaml index a7f9ca96..b941ffe8 100644 --- a/v2/kustomization.yaml +++ b/v2/kustomization.yaml @@ -1,6 +1,6 @@ images: - name: coil - newTag: 2.7.0 + newTag: 2.7.1 newName: ghcr.io/cybozu-go/coil resources: diff --git a/v2/version.go b/v2/version.go index 3b4aab4c..dfc1820d 100644 --- a/v2/version.go +++ b/v2/version.go @@ -5,7 +5,7 @@ import ( "strings" ) -const version = "2.7.0" +const version = "2.7.1" // Version returns the semantic versioning string of Coil. func Version() string {