8000 Post PR #4559: add back `.dev1` to version numbers. by dhermes · Pull Request #4561 · googleapis/google-cloud-python · GitHub
[go: up one dir, main page]

Skip to content

Post PR #4559: add back .dev1 to version numbers. #4561

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Dec 11, 2017
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
13 changes: 13 additions & 0 deletions api_core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,22 @@

- Upgrading `concurrent.futures` backport from `>= 3.0.0`
to `>= 3.2.0` (#4521).
- Moved `datetime`-related helpers from `google.cloud.core` to
`google.api_core.datetime_helpers` (#4399).
- Added missing `client_info` to `gapic_v1/__init__.py`'s
`__all__` (#4567).
- Added helpers for routing headers to `gapic_v1` (#4336).

PyPI: https://pypi.org/project/google-api-core/0.1.2/

## 0.1.1

### Dependencies

- Upgrading `grpcio` dependency from `1.2.0, < 1.6dev` to `>= 1.7.0` (#4280)

PyPI: https://pypi.org/project/google-api-core/0.1.1/

## 0.1.0

Initial release
Expand Down Expand Up @@ -42,3 +53,5 @@ relevant changes from that package are included here.
- Port gax proto helper methods (#4249)
- Remove gapic_v1.method.wrap_with_paging (#4257)
- Add final set of protobuf helpers to api_core (#4259)

PyPI: https://pypi.org/project/google-api-core/0.1.0/
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.2',
version='0.1.3.dev1',
description='Core Google API Client Library',
long_description=README,
namespace_packages=['google'],
Expand Down
2 changes: 1 addition & 1 deletion pubsub/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ PyPI: https://pypi.org/project/google-cloud-pubsub/0.29.4/
- Upgrading `google-api-core` dependency to latest revision (`0.1.2`)
since we rely on the latest version of the `concurrent.futures` backport
to provide the `thread_name_prefix` argument for thread pool
executor (#4521, #XYZ).
executor (#4521, #4559).

PyPI: https://pypi.org/project/google-cloud-pubsub/0.29.3/

Expand Down
7D53 2 changes: 1 addition & 1 deletion pubsub/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@

setup(
name='google-cloud-pubsub',
version='0.29.4',
version='0.29.5.dev1',
description='Python Client for Google Cloud Pub/Sub',
long_description=README,
namespace_packages=[
Expand Down
0