Skip to content

Commit a70fb2b

Browse files
authored
docs(release): update changelog for the 2024-11 release (#14830)
1 parent 291074b commit a70fb2b

File tree

4 files changed

+29
-4
lines changed

4 files changed

+29
-4
lines changed

CHANGELOG.md

+26-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,32 @@
44
breaking changes in the upcoming 3.x release. This release is scheduled for
55
2024-12 or 2025-01.
66

7-
## v2.31.0 - TBD
7+
## v2.31.0 - 2024-11
8+
9+
### New Libraries
10+
11+
We are happy to announce the following GA libraries. Unless specifically noted,
12+
the APIs in these libraries are stable, and are ready for production use.
13+
14+
- [ParallelStore API](/google/cloud/parallelstore/README.md)
15+
16+
### [Pub/Sub](/google/cloud/pubsub/README.md)
17+
18+
- docs(pubsub): Fix region tags for Pub/Sub ingestion from GCS samples ([#14773](https://github.com/googleapis/google-cloud-cpp/pull/14773))
19+
20+
### [Storage](/google/cloud/storage/README.md)
21+
22+
- docs(storage): better suggestion for deprecated API ([#14786](https://github.com/googleapis/google-cloud-cpp/pull/14786))
23+
24+
### [Common Libraries](/google/cloud/README.md)
25+
26+
- feat(oauth2): add support for external account workforce identity ([#14800](https://github.com/googleapis/google-cloud-cpp/pull/14800))
27+
- feat: API key authentication ([#14779](https://github.com/googleapis/google-cloud-cpp/pull/14779))
28+
- feat(mixin): generate mixins for libraries ([#14766](https://github.com/googleapis/google-cloud-cpp/pull/14766))
29+
30+
### [Google APIs interface definitions](https://github.com/googleapis/googleapis)
31+
32+
- This release is based on definitions as of [2024-10-31T11:22:40-07:00](https://github.com/googleapis/googleapis/tree/b7c5b60ee76c4591e32c874978c6cd8231087ed6)
833

934
## v2.30.0 - 2024-10
1035

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ project(
2323
google-cloud-cpp
2424
VERSION 2.31.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}")

MODULE.bazel

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
module(
1818
name = "google_cloud_cpp",
19-
version = "2.31.0-rc", # Updated by CMake
19+
version = "2.31.0", # Updated by CMake
2020
compatibility_level = 2, # Updated by CMake
2121
)
2222

google/cloud/internal/version_info.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
#define GOOGLE_CLOUD_CPP_VERSION_MINOR 31
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)