From 1de54fba4a1032197e441803f8680928245f1c4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20V=C3=A4lim=C3=A4ki?= <110451292+villevsv-upcloud@users.noreply.github.com> Date: Thu, 29 Feb 2024 13:50:38 +0200 Subject: [PATCH] chore: prepare v8.0.0 release (#299) --- CHANGELOG.md | 11 +++++++---- upcloud/client/client.go | 2 +- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e1307af5..e7bb5a43 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ See updating [Changelog example here](https://keepachangelog.com/en/1.0.0/) ## [Unreleased] +## [8.0.0] + ### Added - Managed Object Storage: `ManagedObjectStoragePolicy` struct - Managed Object Storage: `ManagedObjectStorageUserPolicy` struct @@ -52,7 +54,7 @@ See updating [Changelog example here](https://keepachangelog.com/en/1.0.0/) - Storages: Add support for encryption at rest ### Fixed -- Managed Object Storage: use correct path for `GetManagedObjectStorageBucketMetricsRequest` +- Managed Object Storage: use correct path for `GetManagedObjectStorageBucketMetricsRequest` ## [6.11.0] @@ -154,7 +156,7 @@ See updating [Changelog example here](https://keepachangelog.com/en/1.0.0/) - ServerGroup `AntiAffinity` boolean field in favor of `AntiAffinityPolicy` string enum field ### Changed -- GetManagedDatabaseIndices method to return a slice of structs instead of pointers +- GetManagedDatabaseIndices method to return a slice of structs instead of pointers ## [6.2.0] @@ -234,7 +236,7 @@ See updating [Changelog example here](https://keepachangelog.com/en/1.0.0/) ### Changed - context-aware type `client.ClientContext` renamed to `client.Client` - context-aware type `service.ServiceContext` renamed to `service.Service` -- `service.Service` accepts any client that implements `service.Client` interface +- `service.Service` accepts any client that implements `service.Client` interface - `client.New` constructor allows overwrite `baseURL`, `httpClient` and `httpClient.Timeout` client properties - bump Go version to 1.18 - bump module version from `v4` to `v5` @@ -436,7 +438,8 @@ See updating [Changelog example here](https://keepachangelog.com/en/1.0.0/) First stable release -[Unreleased]: https://github.com/UpCloudLtd/upcloud-go-api/compare/v7.0.0...HEAD +[Unreleased]: https://github.com/UpCloudLtd/upcloud-go-api/compare/v8.0.0...HEAD +[8.0.0]: https://github.com/UpCloudLtd/upcloud-go-api/compare/v7.0.0...v8.0.0 [7.0.0]: https://github.com/UpCloudLtd/upcloud-go-api/compare/v6.12.0...v7.0.0 [6.12.0]: https://github.com/UpCloudLtd/upcloud-go-api/compare/v6.11.0...v6.12.0 [6.11.0]: https://github.com/UpCloudLtd/upcloud-go-api/compare/v6.10.0...v6.11.0 diff --git a/upcloud/client/client.go b/upcloud/client/client.go index b9bb6572..d7af6e0f 100644 --- a/upcloud/client/client.go +++ b/upcloud/client/client.go @@ -15,7 +15,7 @@ import ( ) const ( - Version string = "7.0.0" + Version string = "8.0.0" APIVersion string = "1.3" APIBaseURL string = "https://api.upcloud.com"