Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions api_core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
2 changes: 1 addition & 1 deletion api_core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'],
Expand Down
1 change: 1 addition & 0 deletions docs/core/releases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,4 @@ much of the functionality has been split out into a new package
* ``0.1.0`` (`PyPI <https://pypi.org/project/google-api-core/0.1.0/>`__, `Release Notes <https://github.com/GoogleCloudPlatform/google-cloud-python/releases/tag/api-core-0.1.0>`__)
* ``0.1.1`` (`PyPI <https://pypi.org/project/google-api-core/0.1.1/>`__, `Release Notes <https://github.com/GoogleCloudPlatform/google-cloud-python/releases/tag/api-core-0.1.1>`__)
* ``0.1.2`` (`PyPI <https://pypi.org/project/google-api-core/0.1.2/>`__, `Release Notes <https://github.com/GoogleCloudPlatform/google-cloud-python/releases/tag/api-core-0.1.2>`__)
* ``0.1.3`` (`PyPI <https://pypi.org/project/google-api-core/0.1.3/>`__, `Release Notes <https://github.com/GoogleCloudPlatform/google-cloud-python/releases/tag/api-core-0.1.3>`__)
1 change: 1 addition & 0 deletions docs/pubsub/releases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@
* ``0.29.3`` (`PyPI <https://pypi.org/project/google-cloud-pubsub/0.29.3/>`__, `Release Notes <https://github.com/GoogleCloudPlatform/google-cloud-python/releases/tag/pubsub-0.29.3>`__)
* ``0.29.4`` (`PyPI <https://pypi.org/project/google-cloud-pubsub/0.29.4/>`__, `Release Notes <https://github.com/GoogleCloudPlatform/google-cloud-python/releases/tag/pubsub-0.29.4>`__)
* ``0.30.0`` (`PyPI <https://pypi.org/project/google-cloud-pubsub/0.30.0/>`__, `Release Notes <https://github.com/GoogleCloudPlatform/google-cloud-python/releases/tag/pubsub-0.30.0>`__)
* ``0.30.1`` (`PyPI <https://pypi.org/project/google-cloud-pubsub/0.30.1/>`__, `Release Notes <https://github.com/GoogleCloudPlatform/google-cloud-python/releases/tag/pubsub-0.30.1>`__)
17 changes: 17 additions & 0 deletions pubsub/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 2 additions & 3 deletions pubsub/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,16 +51,15 @@


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',
]

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=[
Expand Down