Skip to content
This repository has been archived by the owner on Oct 30, 2024. It is now read-only.

Release v14.23.1-patch1 #3709

Merged
merged 2 commits into from
Jan 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions pkg/project/project.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -25,5 +25,5 @@ func Source() string {
}

func Version() string {
return version
return "14.23.1"
}