Skip to content

Commit 1d9a256

Browse files
authored
chore: prepare for v2.13.0 release (#12005)
1 parent 8d48931 commit 1d9a256

File tree

3 files changed

+20
-3
lines changed

3 files changed

+20
-3
lines changed

CHANGELOG.md

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

109109
</details>
110110

111-
## v2.13.0 - TBD
111+
## v2.13.0 - 2023-07
112112

113113
### New Libraries
114114

@@ -121,6 +121,23 @@ the APIs in these libraries are stable, and are ready for production use.
121121
- [Rapid Migration Assessment](/google/cloud/rapidmigrationassessment/README.md)
122122
- [Secure Web Proxy](/google/cloud/networksecurity/README.md)
123123

124+
### [Batch](/google/cloud/batch/README.md)
125+
126+
- docs: an example to extract Cloud Batch logs ([#11935](https://github.com/googleapis/google-cloud-cpp/pull/11935))
127+
- docs(batch): introduce basic snippets ([#11915](https://github.com/googleapis/google-cloud-cpp/pull/11915))
128+
129+
### [Spanner](/google/cloud/spanner/README.md)
130+
131+
- doc(spanner): add an example for CommitAtLeastOnce() ([#11905](https://github.com/googleapis/google-cloud-cpp/pull/11905))
132+
- feat(spanner): implement at-least-once Commit ([#11899](https://github.com/googleapis/google-cloud-cpp/pull/11899))
133+
134+
### [Common Libraries](/google/cloud/README.md)
135+
136+
- feat(generator): separate page for retry policy overrides ([#11950](https://github.com/googleapis/google-cloud-cpp/pull/11950))
137+
- fix(common): pagination must support empty pages ([#11937](https://github.com/googleapis/google-cloud-cpp/pull/11937))
138+
- feat(generator): create retry policy samples ([#11930](https://github.com/googleapis/google-cloud-cpp/pull/11930))
139+
- fix(common): use 64-bit API on Windows to get file sizes ([#11906](https://github.com/googleapis/google-cloud-cpp/pull/11906))
140+
124141
## v2.12.0 - 2023-06
125142

126143
### 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.13.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 13
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)