Skip to content

Commit b892589

Browse files
authored
Bump version numbers for release v0.8.1 (#2471)
* Bump version numbers for release v0.8.1 * Release notes for v0.8.1
1 parent 40b9686 commit b892589

File tree

8 files changed

+8
-6
lines changed

8 files changed

+8
-6
lines changed

google/cloud/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ set(GOOGLE_CLOUD_CPP_IS_RELEASE "yes")
2222
# This should be included from the top level CMakeLists file
2323
set(GOOGLE_CLOUD_CPP_VERSION_MAJOR 0)
2424
set(GOOGLE_CLOUD_CPP_VERSION_MINOR 6)
25-
set(GOOGLE_CLOUD_CPP_VERSION_PATCH 0)
25+
set(GOOGLE_CLOUD_CPP_VERSION_PATCH 1)
2626

2727
# Generate the version information from the CMake values.
2828
configure_file(internal/version_info.h.in internal/version_info.h)

google/cloud/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ is available [online][doxygen-link].
2626

2727
### v0.6.x - 2019-04
2828

29+
* Avoid std::make_exception_ptr() when building without exceptions.
2930
* Removed the googleapis submodule. The build system now automatically
3031
downloads all deps.
3132

google/cloud/bigtable/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ include(external/googleapis)
1919
# This should be included from the top level CMakeLists file
2020
set(BIGTABLE_CLIENT_VERSION_MAJOR 0)
2121
set(BIGTABLE_CLIENT_VERSION_MINOR 8)
22-
set(BIGTABLE_CLIENT_VERSION_PATCH 0)
22+
set(BIGTABLE_CLIENT_VERSION_PATCH 1)
2323

2424
set(DOXYGEN_PROJECT_NAME "Google Cloud Bigtable C++ Client")
2525
set(DOXYGEN_PROJECT_BRIEF "A C++ Client Library for Google Cloud Bigtable")

google/cloud/bigtable/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ is available [online][doxygen-link].
2525

2626
### v0.8.x - 2019-04
2727

28+
* Use SFINAE to constrain applicability of the BulkMutation(M&&...) ctor.
2829
* **Breaking change**: `Table::BulkApply` now returns a
2930
`std::vector<FailedMutation>` instead of throwing an exception.
3031
* In the future we will remove all the `google::cloud::bigtable::noex::*`

google/cloud/bigtable/bigtable_client_version.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818

1919
BIGTABLE_CLIENT_VERSION_MAJOR = "0"
2020
BIGTABLE_CLIENT_VERSION_MINOR = "8"
21-
BIGTABLE_CLIENT_VERSION_PATCH = "0"
21+
BIGTABLE_CLIENT_VERSION_PATCH = "1"

google/cloud/google_cloud_cpp_common_version.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@
1919
GOOGLE_CLOUD_CPP_IS_RELEASE = "yes"
2020
GOOGLE_CLOUD_CPP_VERSION_MAJOR = "0"
2121
GOOGLE_CLOUD_CPP_VERSION_MINOR = "6"
22-
GOOGLE_CLOUD_CPP_VERSION_PATCH = "0"
22+
GOOGLE_CLOUD_CPP_VERSION_PATCH = "1"

google/cloud/storage/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# This should be included from the top level CMakeLists file
1818
set(STORAGE_CLIENT_VERSION_MAJOR 0)
1919
set(STORAGE_CLIENT_VERSION_MINOR 6)
20-
set(STORAGE_CLIENT_VERSION_PATCH 0)
20+
set(STORAGE_CLIENT_VERSION_PATCH 1)
2121

2222
set(DOXYGEN_PROJECT_NAME "Google Cloud Storage C++ Client")
2323
set(DOXYGEN_PROJECT_BRIEF "A C++ Client Library for Google Cloud Storage")

google/cloud/storage/storage_client_version.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818

1919
STORAGE_CLIENT_VERSION_MAJOR = "0"
2020
STORAGE_CLIENT_VERSION_MINOR = "6"
21-
STORAGE_CLIENT_VERSION_PATCH = "0"
21+
STORAGE_CLIENT_VERSION_PATCH = "1"

0 commit comments

Comments
 (0)