From 8ccba1199c3c969775b9df6d2c3268a6439a19d1 Mon Sep 17 00:00:00 2001 From: Carlos O'Ryan Date: Wed, 4 Jan 2023 17:46:32 +0000 Subject: [PATCH] doc: update CHANGELOG.md for v2.6.0 (#10483) --- CHANGELOG.md | 34 +++++++++++++++++++++++++++- CMakeLists.txt | 2 +- google/cloud/internal/version_info.h | 2 +- 3 files changed, 35 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 46a5d23b52909..d42a670385f95 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -116,7 +116,7 @@ may elicit a deprecation warning. See [#9086] for more details. -## v2.6.0 - TBD +## v2.6.0 - 2023-01 ### [BigQuery](/google/cloud/bigquery/README.md) @@ -129,6 +129,38 @@ The library has been expanded to include the following services: The library has been expanded to include the IAM v2 API. This API includes support for [IAM Deny](https://cloud.google.com/iam/docs/deny-overview) policies. +### [Pub/Sub](/google/cloud/pubsub/README.md) + +- fix: add missing includes ([#10421](https://github.com/googleapis/google-cloud-cpp/pull/10421)) + +### [Speech](/google/cloud/speech/README.md) + +- fix: remove duplicate protos ([#10486](https://github.com/googleapis/google-cloud-cpp/pull/10486)) + +### [Storage](/google/cloud/storage/README.md) + +- fix(storage): better error code for CreateBucket() and 409 errors ([#10480](https://github.com/googleapis/google-cloud-cpp/pull/10480) +- fix: add missing includes ([#10421](https://github.com/googleapis/google-cloud-cpp/pull/10421)) +- fix(storage): scopes should disable self-signed JWTs ([#10369](https://github.com/googleapis/google-cloud-cpp/pull/10369)) +- doc(storage): document all `oauth2` names as deprecated ([#10352](https://github.com/googleapis/google-cloud-cpp/pull/10352)) + +### [Text-to-Speech](/google/cloud/texttospeech/README.md) + +- fix: remove duplicate protos ([#10486](https://github.com/googleapis/google-cloud-cpp/pull/10486)) + +### [Trace](/google/cloud/trace/README.md) + +- fix: remove duplicate protos ([#10486](https://github.com/googleapis/google-cloud-cpp/pull/10486)) + +### [Common Libraries](/google/cloud/README.md) + +- fix: add missing includes ([#10421](https://github.com/googleapis/google-cloud-cpp/pull/10421)) +- feat(common): support external accounts ([#10465](https://github.com/googleapis/google-cloud-cpp/pull/10465)) + ([#10430](https://github.com/googleapis/google-cloud-cpp/pull/10430)) + ([#10357](https://github.com/googleapis/google-cloud-cpp/pull/10357)) +- feat(common): options for `Make*Credentials()` ([#10417](https://github.com/googleapis/google-cloud-cpp/pull/10417)) +- feat: support logging for unified Rest credentials ([#10412](https://github.com/googleapis/google-cloud-cpp/pull/10412)) + ## v2.5.0 - 2022-12 **NOTE** diff --git a/CMakeLists.txt b/CMakeLists.txt index fe4a7251fbbe2..2e180dfbb614c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -23,7 +23,7 @@ project( google-cloud-cpp VERSION 2.6.0 LANGUAGES CXX) -set(PROJECT_VERSION_PRE_RELEASE "rc") +set(PROJECT_VERSION_PRE_RELEASE "") if (NOT "${PROJECT_VERSION_PRE_RELEASE}" STREQUAL "") set(PROJECT_VERSION "${PROJECT_VERSION}-${PROJECT_VERSION_PRE_RELEASE}") diff --git a/google/cloud/internal/version_info.h b/google/cloud/internal/version_info.h index 3f9c131a76aa1..f885d4078c0f7 100644 --- a/google/cloud/internal/version_info.h +++ b/google/cloud/internal/version_info.h @@ -18,6 +18,6 @@ #define GOOGLE_CLOUD_CPP_VERSION_MAJOR 2 #define GOOGLE_CLOUD_CPP_VERSION_MINOR 6 #define GOOGLE_CLOUD_CPP_VERSION_PATCH 0 -#define GOOGLE_CLOUD_CPP_VERSION_PRE_RELEASE "rc" +#define GOOGLE_CLOUD_CPP_VERSION_PRE_RELEASE "" #endif // GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_INTERNAL_VERSION_INFO_H