Skip to content

Commit 37a0603

Browse files
authored
chore: prepare for v2.11.0 release (#11762)
1 parent bed47ba commit 37a0603

File tree

3 files changed

+39
-3
lines changed

3 files changed

+39
-3
lines changed

CHANGELOG.md

Lines changed: 37 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ info, see [#7463] and [#5976].
119119

120120
</details>
121121

122-
## v2.11.0 - TBD
122+
## v2.11.0 - 2023-06
123123

124124
### New Libraries
125125

@@ -128,11 +128,47 @@ the APIs in these libraries are stable, and are ready for production use.
128128

129129
- [Cloud Support API](/google/cloud/support/README.md)
130130

131+
### [Bigtable](/google/cloud/bigtable/README.md)
132+
133+
- docs(bigtable): async Table APIs are stable ([#11711](https://github.com/googleapis/google-cloud-cpp/pull/11711))
134+
- doc(bigtable): deprecate DataClient in doxygen ([#11550](https://github.com/googleapis/google-cloud-cpp/pull/11550))
135+
136+
### [Cloud Asset](/google/cloud/asset/README.md)
137+
138+
The library has been re-enabled on Windows. See
139+
[#11714](https://github.com/googleapis/google-cloud-cpp/issues/11714) for details.
140+
141+
### [Spanner](/google/cloud/spanner/README.md)
142+
143+
- docs(spanner): some documentation tweaks ([#11641](https://github.com/googleapis/google-cloud-cpp/pull/11641))
144+
- feat(spanner): tests and samples for drop-database protection ([#11637](https://github.com/googleapis/google-cloud-cpp/pull/11637))
145+
- feat(spanner): make `ResultSourceInterface` public ([#11636](https://github.com/googleapis/google-cloud-cpp/pull/11636))
146+
147+
### [Storage](/google/cloud/storage/README.md)
148+
149+
- fix(storage): consistent project id overrides ([#11754](https://github.com/googleapis/google-cloud-cpp/pull/11754))
150+
- feat(storage): better error messages in signed URLs ([#11741](https://github.com/googleapis/google-cloud-cpp/pull/11741))
151+
- feat(storage): offer mock client without decorators ([#11697](https://github.com/googleapis/google-cloud-cpp/pull/11697))
152+
- feat(storage): lazy allocation for upload buffer ([#11633](https://github.com/googleapis/google-cloud-cpp/pull/11633))
153+
131154
### [Storage Transfer Service](/google/cloud/storagetransfer/README.md)
132155

133156
The library has been re-enabled on macOS. See
134157
[#8785](https://github.com/googleapis/google-cloud-cpp/issues/8785) for details.
135158

159+
### [Common Libraries](/google/cloud/README.md)
160+
161+
- feat: use full jitter exp backoff policy in the generator ([#11748](https://github.com/googleapis/google-cloud-cpp/pull/11748))
162+
- feat: add new constructor for exponential backoff policy ([#11650](https://github.com/googleapis/google-cloud-cpp/pull/11650))
163+
- feat: avoid development dependencies with Bazel ([#11724](https://github.com/googleapis/google-cloud-cpp/pull/11724))
164+
- docs(common): better exception descriptions ([#11705](https://github.com/googleapis/google-cloud-cpp/pull/11705))
165+
- fix(rest): support rewinds in libcurl ([#11703](https://github.com/googleapis/google-cloud-cpp/pull/11703), [#11709](https://github.com/googleapis/google-cloud-cpp/pull/11709))
166+
- fix: workaround curl_multi_poll returning an error on EINTR ([#11649](https://github.com/googleapis/google-cloud-cpp/pull/11649))
167+
- docs(common): improve `StatusOr<>` documentation ([#11631](https://github.com/googleapis/google-cloud-cpp/pull/11631))
168+
- fix: Correct exponential backoff ranges ([#11529](https://github.com/googleapis/google-cloud-cpp/pull/11529))
169+
- fix: patch releases do not change the ABI ([#11499](https://github.com/googleapis/google-cloud-cpp/pull/11499))
170+
- fix(rest): missing user-agent separator ([#11473](https://github.com/googleapis/google-cloud-cpp/pull/11473))
171+
136172
## v2.10.0 - 2023-05
137173

138174
### New Libraries

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.11.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
@@ -21,6 +21,6 @@
2121
#define GOOGLE_CLOUD_CPP_VERSION_MINOR 11
2222
// NOLINTNEXTLINE(modernize-macro-to-enum)
2323
#define GOOGLE_CLOUD_CPP_VERSION_PATCH 0
24-
#define GOOGLE_CLOUD_CPP_VERSION_PRE_RELEASE "rc"
24+
#define GOOGLE_CLOUD_CPP_VERSION_PRE_RELEASE ""
2525

2626
#endif // GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_INTERNAL_VERSION_INFO_H

0 commit comments

Comments
 (0)