Skip to content

Commit b248f74

Browse files
authored
chore: update version,changelog for v2.17.0 (#12875)
1 parent ff11eda commit b248f74

File tree

3 files changed

+30
-3
lines changed

3 files changed

+30
-3
lines changed

CHANGELOG.md

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,34 @@
44
breaking changes in the upcoming 3.x release. This release is scheduled for
55
2024-12 or 2025-01.
66

7-
## v2.17.0 - TBD
7+
## v2.17.0
8+
9+
### [Compute Engine](/google/cloud/compute/README.md)
10+
11+
- fix(compute): build with Bazel and MSVC
12+
([#12877](https://github.com/googleapis/google-cloud-cpp/pull/12877))
13+
- fix(compute): usable in external Bazel projects
14+
([#12864](https://github.com/googleapis/google-cloud-cpp/pull/12864))
15+
- fix(compute): add missing bazelrc file
16+
([#12856](https://github.com/googleapis/google-cloud-cpp/pull/12856))
17+
18+
### [Storage](/google/cloud/storage/README.md)
19+
20+
- feat(storage): another Bucket CRUD field
21+
([#12842](https://github.com/googleapis/google-cloud-cpp/pull/12842))
22+
- fix(storage): fix tellg() values
23+
([#12844](https://github.com/googleapis/google-cloud-cpp/pull/12844))
24+
- fix(storage): check ReadObject options at runtime
25+
([#12841](https://github.com/googleapis/google-cloud-cpp/pull/12841))
26+
- feat(storage): `MatchGlob` for `ListObjects()`
27+
([#12840](https://github.com/googleapis/google-cloud-cpp/pull/12840))
28+
- doc(storage): describe default project search
29+
([#12833](https://github.com/googleapis/google-cloud-cpp/pull/12833))
30+
31+
### [Common Libraries](/google/cloud/README.md)
32+
33+
- fix(oauth2): do not require `id_token` in creds
34+
([#12867](https://github.com/googleapis/google-cloud-cpp/pull/12867))
835

936
### Other Changes
1037

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