Skip to content

Commit ca59d62

Browse files
authored
doc: update CHANGELOG for v2.8.0 (#10979)
1 parent 16ffa2e commit ca59d62

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

CHANGELOG.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ may elicit a deprecation warning. See [#9086] for more details.
116116

117117
</details>
118118

119-
## v2.8.0 - TBD
119+
## v2.8.0 - 2023-03
120120

121121
### New Libraries
122122

@@ -127,10 +127,24 @@ the APIs in these libraries are stable, and are ready for production use.
127127
- [Alloy DB](/google/cloud/alloydb/README.md)
128128
- [API Keys](/google/cloud/apikeys/README.md)
129129

130+
### [Bigtable](/google/cloud/bigtable/README.md)
131+
132+
- fix(bigtable): retries for CheckConsistency / AsyncWaitForConsistency ([#10955](https://github.com/googleapis/google-cloud-cpp/pull/10955))
133+
- docs(bigtable): clean up CreateTable sample ([#10844](https://github.com/googleapis/google-cloud-cpp/pull/10844))
134+
135+
### [Data Catalog](/google/cloud/datacatalog/README.md)
136+
137+
- feat(datacatalog): generate lineage library ([#10977](https://github.com/googleapis/google-cloud-cpp/pull/10977))
138+
130139
### [KMS](/google/cloud/kms/README.md)
131140

132141
The library has been expanded to include the KMS Inventory API.
133142

143+
### [Pub/Sub](/google/cloud/pubsub/README.md)
144+
145+
- fix(pubsub): no warnings on `ack()/nack()` success ([#10920](https://github.com/googleapis/google-cloud-cpp/pull/10920))
146+
- fix(pubsub): fewer default threads for 32-bit builds ([#10793](https://github.com/googleapis/google-cloud-cpp/pull/10793))
147+
134148
### [TPU](/google/cloud/tpu/README.md)
135149

136150
The library has been expanded to include the TPU v2 API.
@@ -143,6 +157,10 @@ support clients for multiple versions of a GCP service from within the same
143157
library (e.g. `speech_v1::SpeechClient` and `speech_v2::SpeechClient`). See
144158
[#10170] for more details.
145159

160+
- fix: retries for GetIamPolicy, TestIamPermissions ([#10957](https://github.com/googleapis/google-cloud-cpp/pull/10957))
161+
- doc: improve description for "terminate" group ([#10950](https://github.com/googleapis/google-cloud-cpp/pull/10950))
162+
- fix(common): fewer spurious warnings in the log ([#10811](https://github.com/googleapis/google-cloud-cpp/pull/10811))
163+
146164
## v2.7.0 - 2023-02
147165

148166
### 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.8.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 8
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)