Skip to content

Commit 6efdd7e

Browse files
authored
Fix version numbers and release dates. (#1578)
The version numbers in google/cloud/CMakeLists.txt was off by one. Also fixed the release date in the release notes.
1 parent bae742f commit 6efdd7e

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

google/cloud/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ set(GOOGLE_CLOUD_CPP_IS_RELEASE "yes")
2121

2222
# This should be included from the top level CMakeLists file
2323
set(GOOGLE_CLOUD_CPP_VERSION_MAJOR 0)
24-
set(GOOGLE_CLOUD_CPP_VERSION_MINOR 1)
24+
set(GOOGLE_CLOUD_CPP_VERSION_MINOR 2)
2525
set(GOOGLE_CLOUD_CPP_VERSION_PATCH 0)
2626

2727
# Generate the version information from the CMake values.

google/cloud/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ is available [online][doxygen-link].
2222

2323
## Release Notes
2424

25-
### v0.2.x - TBD
25+
### v0.2.x - 2018-12
2626

2727
* Implement `google::cloud::future<T>` and `google::cloud::promise<T>` based on
2828
ISO/IEC TS 19571:2016, the "C++ Extensions for Concurrency" technical

google/cloud/bigtable/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ is available [online][doxygen-link].
2121

2222
## Release Notes
2323

24-
### v0.4.x - TBD
24+
### v0.4.x - 2018-12
2525

2626
* More experimental asynchronous APIs, note that we expect to change all these
2727
experimental APIs as described in

google/cloud/bigtable/config.cmake.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
include(CMakeFindDependencyMacro)
1616
find_dependency(protobuf)
1717
find_dependency(gRPC)
18-
find_dependency(google_cloud_cpp_common 0.1.0)
18+
find_dependency(google_cloud_cpp_common 0.2.0)
1919

2020
include("${CMAKE_CURRENT_LIST_DIR}/bigtable-targets.cmake")
2121

Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# DO NOT EDIT -- GENERATED BY CMake -- Change the CMakeLists.txt file if needed
22
GOOGLE_CLOUD_CPP_IS_RELEASE = "yes"
33
GOOGLE_CLOUD_CPP_VERSION_MAJOR = "0"
4-
GOOGLE_CLOUD_CPP_VERSION_MINOR = "1"
4+
GOOGLE_CLOUD_CPP_VERSION_MINOR = "2"
55
GOOGLE_CLOUD_CPP_VERSION_PATCH = "0"

google/cloud/storage/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ the reference guide includes a quick start guide.
2020

2121
## Release Notes
2222

23-
### v0.2.x - TBD
23+
### v0.2.x - 2018-12
2424

2525
* Use resumable uploads for large files in `Client::UploadFile()`.
2626
* Implement support for the `userIp` optional query parameter.

google/cloud/storage/config.cmake.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
include(CMakeFindDependencyMacro)
1616
find_dependency(CURL)
1717
find_dependency(Crc32c)
18-
find_dependency(google_cloud_cpp_common 0.1.0)
18+
find_dependency(google_cloud_cpp_common 0.2.0)
1919

2020
# Some versions of FindCURL do not define CURL::CURL, so we define it ourselves.
2121
if (NOT TARGET CURL::CURL)

0 commit comments

Comments
 (0)