Skip to content

Commit 4a3cbe6

Browse files
authored
doc: prepare for v2.10.0 release (#11460)
1 parent 69ea716 commit 4a3cbe6

File tree

3 files changed

+23
-8
lines changed

3 files changed

+23
-8
lines changed

CHANGELOG.md

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

120120
</details>
121121

122-
## v2.10.0 - TBD
122+
## v2.10.0 - 2023-05
123123

124124
### New Libraries
125125

@@ -134,19 +134,34 @@ The following experimental libraries are now available:
134134

135135
- [Cloud SQL Admin API](/google/cloud/sql/README.md)
136136

137-
### [Service Control](/google/cloud/servicecontrol/README.md)
138-
139-
The library has been expanded to include the v2 service.
140-
141137
### [Bigquery](/google/cloud/bigquery/README.md)
142138

143139
- Removed bigquery/v2/model\*. There are no plans to implement gRPC endpoints for
144140
this service. Therefore the generated code will never be usable and never has
145141
been.
146142

143+
### [Service Control](/google/cloud/servicecontrol/README.md)
144+
145+
The library has been expanded to include the v2 service.
146+
147+
### [Spanner](/google/cloud/spanner/README.md)
148+
149+
- fix(spanner): propagate Options through SessionPool callbacks ([#11344](https://github.com/googleapis/google-cloud-cpp/pull/11344))
150+
151+
### [Storage](/google/cloud/storage/README.md)
152+
153+
- fix(storage): cache legacy credentials ([#11271](https://github.com/googleapis/google-cloud-cpp/pull/11271))
154+
- fix(storage): support per-request options ([#11445](https://github.com/googleapis/google-cloud-cpp/pull/11445))
155+
- fix(storage): cache all credential types ([#11447](https://github.com/googleapis/google-cloud-cpp/pull/11447))
156+
157+
### [Common Libraries](/google/cloud/README.md)
158+
159+
- doc: declutter main.dox pages ([#11405](https://github.com/googleapis/google-cloud-cpp/pull/11405))
160+
- doc(common): documentation improvements ([#11376](https://github.com/googleapis/google-cloud-cpp/pull/11376))
161+
147162
### Other Changes
148163

149-
**Bazel Testing**: starting with v2.10.0 we only test with Bazel >= 5.4.0. We
164+
**Bazel Testing**: after v2.10.0 we will only test with Bazel >= 5.4.0. We
150165
do not consider this a breaking change, as Bazel 4.x has been in maintenance
151166
mode for several months.
152167

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.10.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 10
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)