diff --git a/api_core/CHANGELOG.md b/api_core/CHANGELOG.md index c92239caac1b..e52647956695 100644 --- a/api_core/CHANGELOG.md +++ b/api_core/CHANGELOG.md @@ -4,6 +4,23 @@ [1]: https://pypi.org/project/google-api-core/#history +## 0.1.3 + +### Notable Implementation Changes + +- Apply scopes to explicitly provided credentials if needed (#4594). +- Removing `google.api_core.gapic_v1.method.METRICS_METADATA_KEY`. It + can be accessed via + `google.api_core.gapic_v1.client_info.METRICS_METADATA_KEY` (#4588). + +### Dependencies + +- Upgrading to latest `grpcio==1.8.2` (#4642). For details, see + related gRPC [bug](https://github.com/grpc/grpc/issues/9688) + and [fix](https://github.com/grpc/grpc/pull/13665). + +PyPI: https://pypi.org/project/google-api-core/0.1.3/ + ## 0.1.2 - Upgrading `concurrent.futures` backport from `>= 3.0.0` diff --git a/api_core/setup.py b/api_core/setup.py index 8c8ea18e8639..8273c46a9b18 100644 --- a/api_core/setup.py +++ b/api_core/setup.py @@ -68,7 +68,7 @@ setup( name='google-api-core', - version='0.1.3.dev1', + version='0.1.3', description='Core Google API Client Library', long_description=README, namespace_packages=['google'], diff --git a/docs/core/releases.rst b/docs/core/releases.rst index 329b927ef412..24387c44cfdd 100644 --- a/docs/core/releases.rst +++ b/docs/core/releases.rst @@ -32,3 +32,4 @@ much of the functionality has been split out into a new package * ``0.1.0`` (`PyPI `__, `Release Notes `__) * ``0.1.1`` (`PyPI `__, `Release Notes `__) * ``0.1.2`` (`PyPI `__, `Release Notes `__) +* ``0.1.3`` (`PyPI `__, `Release Notes `__) diff --git a/docs/pubsub/releases.rst b/docs/pubsub/releases.rst index 58f83aa7c3db..d2661d10f1ab 100644 --- a/docs/pubsub/releases.rst +++ b/docs/pubsub/releases.rst @@ -21,3 +21,4 @@ * ``0.29.3`` (`PyPI `__, `Release Notes `__) * ``0.29.4`` (`PyPI `__, `Release Notes `__) * ``0.30.0`` (`PyPI `__, `Release Notes `__) +* ``0.30.1`` (`PyPI `__, `Release Notes `__) diff --git a/pubsub/CHANGELOG.md b/pubsub/CHANGELOG.md index 971db1e15ee3..0912251259f2 100644 --- a/pubsub/CHANGELOG.md +++ b/pubsub/CHANGELOG.md @@ -4,6 +4,23 @@ [1]: https://pypi.org/project/google-cloud-pubsub/#history +## 0.30.1 + +### Notable Implementation Changes + +- Moving lock factory used in publisher client to the Batch + implementation (#4628). +- Use a UUID (rather than a sentinel object) on `Future` (#4634). + +### Dependencies + +- Upgrading to `google-api-core==0.1.3` which depends on the latest + `grpcio==1.8.2` (#4642). This fixes #4600. For details, see related + gRPC [bug](https://github.com/grpc/grpc/issues/9688) and + [fix](https://github.com/grpc/grpc/pull/13665). + +PyPI: https://pypi.org/project/google-cloud-pubsub/0.30.1/ + ## 0.30.0 ### Notable Implementation Changes diff --git a/pubsub/setup.py b/pubsub/setup.py index 2e38d2c84f32..5c50623dbea3 100644 --- a/pubsub/setup.py +++ b/pubsub/setup.py @@ -51,8 +51,7 @@ REQUIREMENTS = [ - 'google-api-core[grpc] >= 0.1.2, < 0.2.0dev', - 'grpcio >= 1.8.2', + 'google-api-core[grpc] >= 0.1.3, < 0.2.0dev', 'google-auth >= 1.0.2, < 2.0dev', 'grpc-google-iam-v1 >= 0.11.1, < 0.12dev', 'psutil >= 5.2.2, < 6.0dev', @@ -60,7 +59,7 @@ setup( name='google-cloud-pubsub', - version='0.30.1.dev1', + version='0.30.1', description='Python Client for Google Cloud Pub/Sub', long_description=README, namespace_packages=[