Cutting version 0.28.0 of `google-cloud-core`. (#4280)
Also
- updating all dependencies of `grpcio` to `>= 1.7.0`. This was due to an issue [1] with `1.6.0`.
- updating the version of `google-api-core` (also to be released, This is required since the bounds on `grpcio` of `google-cloud-core==0.28.0` and `google-api-core==0.1.0` are mutually exclusive.)
- Updating `google-api-core` CHANGELOG for release.
- Updating packages to depend on `google-cloud-core>=0.28.0`.
- Installing `nox -s lint` deps locally for vision.
[1]: https://github.com/grpc/grpc/issues/12455
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ca32b9c..cd497b1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
# Changelog
+## v0.1.1
+
+- Upgrading `grpcio` dependency from `1.2.0, < 1.6dev` to `>= 1.7.0` (#4280)
+
## v0.1.0
Initial release
diff --git a/setup.py b/setup.py
index fa6cdf7..d488fa0 100644
--- a/setup.py
+++ b/setup.py
@@ -60,12 +60,12 @@
EXTRAS_REQUIREMENTS = {
':python_version<"3.2"': ['futures >= 3.0.0'],
- 'grpc': ['grpcio >= 1.2.0, < 1.6dev'],
+ 'grpc': ['grpcio >= 1.7.0'],
}
setup(
name='google-api-core',
- version='0.1.0',
+ version='0.1.1',
description='Core Google API Client Library',
long_description=README,
namespace_packages=['google'],