From e30b1496d6d43ac54d82185f15c40b266c489ff4 Mon Sep 17 00:00:00 2001 From: Masayuki Ishii Date: Tue, 19 Dec 2023 04:34:22 +0000 Subject: [PATCH] Bump version to 1.27.1 --- CHANGELOG.md | 14 +++++++++++++- version.go | 2 +- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2382c5a0..dbfb0e3a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,17 @@ This project employs a versioning scheme described in [RELEASE.md](RELEASE.md#ve ## [Unreleased] +## [1.27.1] + +### Added + +- Implement ckecli resource get [#688](https://github.com/cybozu-go/cke/pull/688) + +### Changed + +- Fix reboot_queue_running to report internal-state more precisely [#685](https://github.com/cybozu-go/cke/pull/685) +- Update go modules [#689](https://github.com/cybozu-go/cke/pull/689) + ## [1.27.0] ### Added @@ -52,7 +63,8 @@ This project employs a versioning scheme described in [RELEASE.md](RELEASE.md#ve - See [release-1.13/CHANGELOG.md](https://github.com/cybozu-go/cke/blob/release-1.13/CHANGELOG.md) for changes in CKE 1.13. - See [release-1.12/CHANGELOG.md](https://github.com/cybozu-go/cke/blob/release-1.12/CHANGELOG.md) for changes in CKE 1.12. -[Unreleased]: https://github.com/cybozu-go/cke/compare/v1.27.0-rc.2...HEAD +[Unreleased]: https://github.com/cybozu-go/cke/compare/v1.27.1...HEAD +[1.27.1]: https://github.com/cybozu-go/cke/compare/v1.27.0...v1.27.1 [1.27.0]: https://github.com/cybozu-go/cke/compare/v1.26.4...v1.27.0 [1.27.0-rc.2]: https://github.com/cybozu-go/cke/compare/v1.27.0-rc.1...v1.27.0-rc.2 [1.27.0-rc.1]: https://github.com/cybozu-go/cke/compare/v1.26.4...v1.27.0-rc.1 diff --git a/version.go b/version.go index 01832e82..e3d7e491 100644 --- a/version.go +++ b/version.go @@ -1,7 +1,7 @@ package cke // Version represents current cke version -const Version = "1.27.0" +const Version = "1.27.1" // ConfigVersion represents the current configuration scheme // of how CKE constructs its Kubernetes cluster.