Skip to content

Commit 8ccba11

Browse files
authored
doc: update CHANGELOG.md for v2.6.0 (#10483)
1 parent 77fa64e commit 8ccba11

File tree

3 files changed

+35
-3
lines changed

3 files changed

+35
-3
lines changed

CHANGELOG.md

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ may elicit a deprecation warning. See [#9086] for more details.
116116

117117
</details>
118118

119-
## v2.6.0 - TBD
119+
## v2.6.0 - 2023-01
120120

121121
### [BigQuery](/google/cloud/bigquery/README.md)
122122

@@ -129,6 +129,38 @@ The library has been expanded to include the following services:
129129
The library has been expanded to include the IAM v2 API. This API includes
130130
support for [IAM Deny](https://cloud.google.com/iam/docs/deny-overview) policies.
131131

132+
### [Pub/Sub](/google/cloud/pubsub/README.md)
133+
134+
- fix: add missing <cstdint> includes ([#10421](https://github.com/googleapis/google-cloud-cpp/pull/10421))
135+
136+
### [Speech](/google/cloud/speech/README.md)
137+
138+
- fix: remove duplicate protos ([#10486](https://github.com/googleapis/google-cloud-cpp/pull/10486))
139+
140+
### [Storage](/google/cloud/storage/README.md)
141+
142+
- fix(storage): better error code for CreateBucket() and 409 errors ([#10480](https://github.com/googleapis/google-cloud-cpp/pull/10480)
143+
- fix: add missing <cstdint> includes ([#10421](https://github.com/googleapis/google-cloud-cpp/pull/10421))
144+
- fix(storage): scopes should disable self-signed JWTs ([#10369](https://github.com/googleapis/google-cloud-cpp/pull/10369))
145+
- doc(storage): document all `oauth2` names as deprecated ([#10352](https://github.com/googleapis/google-cloud-cpp/pull/10352))
146+
147+
### [Text-to-Speech](/google/cloud/texttospeech/README.md)
148+
149+
- fix: remove duplicate protos ([#10486](https://github.com/googleapis/google-cloud-cpp/pull/10486))
150+
151+
### [Trace](/google/cloud/trace/README.md)
152+
153+
- fix: remove duplicate protos ([#10486](https://github.com/googleapis/google-cloud-cpp/pull/10486))
154+
155+
### [Common Libraries](/google/cloud/README.md)
156+
157+
- fix: add missing <cstdint> includes ([#10421](https://github.com/googleapis/google-cloud-cpp/pull/10421))
158+
- feat(common): support external accounts ([#10465](https://github.com/googleapis/google-cloud-cpp/pull/10465))
159+
([#10430](https://github.com/googleapis/google-cloud-cpp/pull/10430))
160+
([#10357](https://github.com/googleapis/google-cloud-cpp/pull/10357))
161+
- feat(common): options for `Make*Credentials()` ([#10417](https://github.com/googleapis/google-cloud-cpp/pull/10417))
162+
- feat: support logging for unified Rest credentials ([#10412](https://github.com/googleapis/google-cloud-cpp/pull/10412))
163+
132164
## v2.5.0 - 2022-12
133165

134166
**NOTE**

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ project(
2323
google-cloud-cpp
2424
VERSION 2.6.0
2525
LANGUAGES CXX)
26-
set(PROJECT_VERSION_PRE_RELEASE "rc")
26+
set(PROJECT_VERSION_PRE_RELEASE "")
2727

2828
if (NOT "${PROJECT_VERSION_PRE_RELEASE}" STREQUAL "")
2929
set(PROJECT_VERSION "${PROJECT_VERSION}-${PROJECT_VERSION_PRE_RELEASE}")

google/cloud/internal/version_info.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
#define GOOGLE_CLOUD_CPP_VERSION_MAJOR 2
1919
#define GOOGLE_CLOUD_CPP_VERSION_MINOR 6
2020
#define GOOGLE_CLOUD_CPP_VERSION_PATCH 0
21-
#define GOOGLE_CLOUD_CPP_VERSION_PRE_RELEASE "rc"
21+
#define GOOGLE_CLOUD_CPP_VERSION_PRE_RELEASE ""
2222

2323
#endif // GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_INTERNAL_VERSION_INFO_H

0 commit comments

Comments
 (0)