Skip to content

Commit fdda7eb

Browse files
authored
docs: prepare for v2.15.0 release (#12532)
1 parent f6d8749 commit fdda7eb

File tree

3 files changed

+49
-4
lines changed

3 files changed

+49
-4
lines changed

CHANGELOG.md

Lines changed: 47 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ info, see [#7463] and [#5976].
108108

109109
</details>
110110

111-
## v2.15.0 - TBD
111+
## v2.15.0 - 2023-09
112112

113113
### New Libraries
114114

@@ -117,6 +117,8 @@ the APIs in these libraries are stable, and are ready for production use.
117117

118118
- [Datastore](/google/cloud/datastore/README.md)
119119
- [Discovery Engine API](/google/cloud/discoveryengine/README.md)
120+
- [Policy Simulator](/google/cloud/policysimulator/README.md)
121+
- [Policy Troubleshooter](/google/cloud/policytroubleshooter/README.md)
120122

121123
### Cloud IoT
122124

@@ -132,7 +134,50 @@ unusable components from the C++ libraries. More information in the BeyondCorp
132134

133135
### [Natural Language AI](/google/cloud/language/README.md)
134136

135-
The library has been expanded to include the v2 service.
137+
We expanded the library to include the `v2` version of the API.
138+
139+
### [Notebooks](/google/cloud/notebooks/README.md)
140+
141+
We expanded the library to include the `v2` version of the API.
142+
143+
### [Pub/Sub](/google/cloud/pubsub/README.md)
144+
145+
- fix(pubsub): url encode routing params on publish
146+
([#12454](https://github.com/googleapis/google-cloud-cpp/pull/12454))
147+
- feat(pubsub): increase backoff from 1.3 to 4.0
148+
([#12306](https://github.com/googleapis/google-cloud-cpp/pull/12306))
149+
150+
### [Spanner](/google/cloud/spanner/README.md)
151+
152+
- feat(spanner): enable leader aware routing by default
153+
([#12319](https://github.com/googleapis/google-cloud-cpp/pull/12319))
154+
155+
### [Storage](/google/cloud/storage/README.md)
156+
157+
- fix(storage): tracing should decorate retries
158+
([#12314](https://github.com/googleapis/google-cloud-cpp/pull/12314))
159+
160+
### [Common Libraries](/google/cloud/README.md)
161+
162+
- fix: URL encode explicit routing values
163+
([#12493](https://github.com/googleapis/google-cloud-cpp/pull/12493))
164+
([#12447](https://github.com/googleapis/google-cloud-cpp/pull/12447))
165+
- feat(common): add `Options::set<>() &&` overload
166+
([#12424](https://github.com/googleapis/google-cloud-cpp/pull/12424))
167+
- fix(common): gRPC alarms require more locking
168+
([#12406](https://github.com/googleapis/google-cloud-cpp/pull/12406))
169+
- feat(common): retry loops preserve original message
170+
([#12368](https://github.com/googleapis/google-cloud-cpp/pull/12368))
171+
- feat(otel): control tracing with environment variable
172+
([#11897](https://github.com/googleapis/google-cloud-cpp/pull/11897))
173+
- docs(otel): troubleshoot exporter doc
174+
([#12345](https://github.com/googleapis/google-cloud-cpp/pull/12345))
175+
- docs(otel): build quickstart with vcpkg
176+
([#12324](https://github.com/googleapis/google-cloud-cpp/pull/12324))
177+
- feat(common): retry loops signal via error info
178+
([#12313](https://github.com/googleapis/google-cloud-cpp/pull/12313))
179+
- fix(common): handle expired policies in `*RetryLoop`
180+
([#12301](https://github.com/googleapis/google-cloud-cpp/pull/12301))
136181

137182
### Other Changes
138183

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