From 612805319b5aeaf6d6dce9878ea379c65258333e Mon Sep 17 00:00:00 2001 From: Bu Sun Kim <8822365+busunkim96@users.noreply.github.com> Date: Wed, 21 Jul 2021 10:52:37 -0600 Subject: [PATCH 1/2] fix(deps): pin 'google-{api,cloud}-core', 'google-auth' to allow 2.x versions (#19) Expand pins on library dependencies in preparation for these dependencies taking a new major version. See https://github.com/googleapis/google-cloud-python/issues/10566. --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b2faf1b..5c0388b 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,10 @@ release_status = "Development Status :: 4 - Beta" url = "https://github.com/googleapis/python-tpu" dependencies = [ - "google-api-core[grpc] >= 1.26.0, <2.0.0dev", + # NOTE: Maintainers, please do not require google-api-core>=2.x.x + # Until this issue is closed + # https://github.com/googleapis/google-cloud-python/issues/10566 + "google-api-core[grpc] >= 1.26.0, <3.0.0dev", "proto-plus >= 1.15.0", "packaging >= 14.3", ] From 42d00f6cdf3b67fb022c73d8958f6b0fd34e3f32 Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Wed, 21 Jul 2021 16:50:47 -0600 Subject: [PATCH 2/2] chore: release 0.2.1 (#21) Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> --- CHANGELOG.md | 7 +++++++ setup.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 96f5703..c4d8800 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +### [0.2.1](https://www.github.com/googleapis/python-tpu/compare/v0.2.0...v0.2.1) (2021-07-21) + + +### Bug Fixes + +* **deps:** pin 'google-{api,cloud}-core', 'google-auth' to allow 2.x versions ([#19](https://www.github.com/googleapis/python-tpu/issues/19)) ([6128053](https://www.github.com/googleapis/python-tpu/commit/612805319b5aeaf6d6dce9878ea379c65258333e)) + ## [0.2.0](https://www.github.com/googleapis/python-tpu/compare/v0.1.0...v0.2.0) (2021-07-14) diff --git a/setup.py b/setup.py index 5c0388b..686a6a8 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ name = "google-cloud-tpu" description = "Cloud TPU API client library" -version = "0.2.0" +version = "0.2.1" release_status = "Development Status :: 4 - Beta" url = "https://github.com/googleapis/python-tpu" dependencies = [