Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ breaking changes in the upcoming 4.x release. This release is scheduled for
**NOTE**: Please refer to the [V3 Migration Guide](/doc/v3-migration-guide.md)
for details on updating existing applications using v1.x.y or v2.x.y.

## v3.4.0 - TBD

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The release.sh script, which is used to create GitHub releases, expects the version heading in CHANGELOG.md to match the tag exactly (e.g., ## v3.4.0). The current format ## v3.4.0 - TBD will not be found by the script, which will prevent the release notes from being automatically populated in the GitHub release. To ensure compatibility with the release script, please remove the - TBD from this line.

Suggested change
## v3.4.0 - TBD
## v3.4.0


## v3.3.0 - 2026-03

### New Libraries
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ set(PACKAGE_BUGREPORT "https://github.com/googleapis/google-cloud-cpp/issues")

project(
google-cloud-cpp
VERSION 3.3.0
VERSION 3.4.0
LANGUAGES CXX)
set(PROJECT_VERSION_PRE_RELEASE "")
set(PROJECT_VERSION_PRE_RELEASE "rc")

if (NOT "${PROJECT_VERSION_PRE_RELEASE}" STREQUAL "")
set(PROJECT_VERSION "${PROJECT_VERSION}-${PROJECT_VERSION_PRE_RELEASE}")
Expand Down
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

module(
name = "google_cloud_cpp",
version = "3.3.0", # Updated by CMake
version = "3.4.0-rc", # Updated by CMake
compatibility_level = 3, # Updated by CMake
)

Expand Down
Loading
Loading