Skip to content

Commit b2ce49d

Browse files
authored
docs(release): update changelog for the 2024-09 release (#14685)
1 parent da56bf9 commit b2ce49d

File tree

4 files changed

+26
-4
lines changed

4 files changed

+26
-4
lines changed

CHANGELOG.md

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

7-
## v2.29.0 - TBD
7+
## v2.29.0 - 2024-09
88

99
### New Libraries
1010

@@ -13,6 +13,28 @@ the APIs in these libraries are stable, and are ready for production use.
1313

1414
- [GKE Connect API](/google/cloud/gkeconnect/README.md)
1515

16+
### [Bigtable](/google/cloud/bigtable/README.md)
17+
18+
- fix(bigtable): sanitize RowRange proto input ([#14651](https://github.com/googleapis/google-cloud-cpp/pull/14651))
19+
20+
### [Compute](/google/cloud/compute/README.md)
21+
22+
- feat(compute): add missing services instant_snapshots and region_instant_snapshots ([#14647](https://github.com/googleapis/google-cloud-cpp/pull/14647))
23+
24+
### [Spanner](/google/cloud/spanner/README.md)
25+
26+
- feat(spanner): support instance edition ([#14678](https://github.com/googleapis/google-cloud-cpp/pull/14678))
27+
28+
### [Common Libraries](/google/cloud/README.md)
29+
30+
- fix: do not persist the keys loaded from PKCS#12 on Windows ([#14645](https://github.com/googleapis/google-cloud-cpp/pull/14645))
31+
- fix: no need to link gmock_main in mocks ([#14640](https://github.com/googleapis/google-cloud-cpp/pull/14640))
32+
- fix: quickstarts build with bazel ([#14633](https://github.com/googleapis/google-cloud-cpp/pull/14633))
33+
34+
### [Google APIs interface definitions](https://github.com/googleapis/googleapis)
35+
36+
- This release is based on definitions as of [2024-08-30T10:45:43-07:00](https://github.com/googleapis/googleapis/tree/6a474b31c53cc1797710206824a17b364a835d2d)
37+
1638
## v2.28.0 - 2024-08
1739

1840
### [OpenTelemetry](/google/cloud/opentelemetry/README.md)

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ project(
2323
google-cloud-cpp
2424
VERSION 2.29.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.29.0-rc", # Updated by CMake
19+
version = "2.29.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 29
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)