From f3bbf2c56d14bc43af63c8562c0fe8761f554b6f Mon Sep 17 00:00:00 2001 From: Taylor Bot Date: Wed, 31 Jan 2024 10:43:48 +0100 Subject: [PATCH] Release v14.23.1-patch1 (#3709) * Release v14.23.1-patch1 * Update project.go --------- Co-authored-by: Christian Bianchi --- CHANGELOG.md | 5 ++++- pkg/project/project.go | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a8a61cf3a..ddc4cfe108 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [14.23.1-patch1] - 2024-01-31 + ### Fixed - Fix Route53 list hosted zones to avoid pagination issue. @@ -1068,7 +1070,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 -[Unreleased]: https://github.com/giantswarm/aws-operator/compare/v14.23.1...HEAD +[Unreleased]: https://github.com/giantswarm/aws-operator/compare/v14.23.1-patch1...HEAD +[14.23.1-patch1]: https://github.com/giantswarm/aws-operator/compare/v14.23.1...v14.23.1-patch1 [14.23.1]: https://github.com/giantswarm/aws-operator/compare/v14.23.0...v14.23.1 [14.23.0]: https://github.com/giantswarm/aws-operator/compare/v14.22.0...v14.23.0 [14.22.0]: https://github.com/giantswarm/aws-operator/compare/v14.21.0...v14.22.0 diff --git a/pkg/project/project.go b/pkg/project/project.go index 13f38d847f..94bfe6135e 100644 --- a/pkg/project/project.go +++ b/pkg/project/project.go @@ -5,7 +5,7 @@ var ( gitSHA = "n/a" name string = "aws-operator" source string = "https://github.com/giantswarm/aws-operator" - version = "14.23.1" + //version = "14.23.1-patch1" ) func Description() string { @@ -25,5 +25,5 @@ func Source() string { } func Version() string { - return version + return "14.23.1" }