Skip to content

Commit b2c7c11

Browse files
authored
Making google-cloud-pubsub==0.30.1 release. (googleapis#4644)
* Making `google-cloud-pubsub==0.30.1` release. * Also making `google-api-core==0.1.3` release. * Dropping the Pub / Sub dependency on `grpcio`.
1 parent 6275537 commit b2c7c11

File tree

6 files changed

+39
-4
lines changed

6 files changed

+39
-4
lines changed

api_core/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,23 @@
44

55
[1]: https://pypi.org/project/google-api-core/#history
66

7+
## 0.1.3
8+
9+
### Notable Implementation Changes
10+
11+
- Apply scopes to explicitly provided credentials if needed (#4594).
12+
- Removing `google.api_core.gapic_v1.method.METRICS_METADATA_KEY`. It
13+
can be accessed via
14+
`google.api_core.gapic_v1.client_info.METRICS_METADATA_KEY` (#4588).
15+
16+
### Dependencies
17+
18+
- Upgrading to latest `grpcio==1.8.2` (#4642). For details, see
19+
related gRPC [bug](https://github.com/grpc/grpc/issues/9688)
20+
and [fix](https://github.com/grpc/grpc/pull/13665).
21+
22+
PyPI: https://pypi.org/project/google-api-core/0.1.3/
23+
724
## 0.1.2
825

926
- Upgrading `concurrent.futures` backport from `>= 3.0.0`

api_core/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868

6969
setup(
7070
name='google-api-core',
71-
version='0.1.3.dev1',
71+
version='0.1.3',
7272
description='Core Google API Client Library',
7373
long_description=README,
7474
namespace_packages=['google'],

docs/core/releases.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,4 @@ much of the functionality has been split out into a new package
3232
* ``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>`__)
3333
* ``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>`__)
3434
* ``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>`__)
35+
* ``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>`__)

docs/pubsub/releases.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,4 @@
2121
* ``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>`__)
2222
* ``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>`__)
2323
* ``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>`__)
24+
* ``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>`__)

pubsub/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,23 @@
44

55
[1]: https://pypi.org/project/google-cloud-pubsub/#history
66

7+
## 0.30.1
8+
9+
### Notable Implementation Changes
10+
11+
- Moving lock factory used in publisher client to the Batch
12+
implementation (#4628).
13+
- Use a UUID (rather than a sentinel object) on `Future` (#4634).
14+
15+
### Dependencies
16+
17+
- Upgrading to `google-api-core==0.1.3` which depends on the latest
18+
`grpcio==1.8.2` (#4642). This fixes #4600. For details, see related
19+
gRPC [bug](https://github.com/grpc/grpc/issues/9688) and
20+
[fix](https://github.com/grpc/grpc/pull/13665).
21+
22+
PyPI: https://pypi.org/project/google-cloud-pubsub/0.30.1/
23+
724
## 0.30.0
825

926
### Notable Implementation Changes

pubsub/setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,16 +51,15 @@
5151

5252

5353
REQUIREMENTS = [
54-
'google-api-core[grpc] >= 0.1.2, < 0.2.0dev',
55-
'grpcio >= 1.8.2',
54+
'google-api-core[grpc] >= 0.1.3, < 0.2.0dev',
5655
'google-auth >= 1.0.2, < 2.0dev',
5756
'grpc-google-iam-v1 >= 0.11.1, < 0.12dev',
5857
'psutil >= 5.2.2, < 6.0dev',
5958
]
6059

6160
setup(
6261
name='google-cloud-pubsub',
63-
version='0.30.1.dev1',
62+
version='0.30.1',
6463
description='Python Client for Google Cloud Pub/Sub',
6564
long_description=README,
6665
namespace_packages=[

0 commit comments

Comments
 (0)