From ee53b3b32a050874ba4cfb491fb384f94682c824 Mon Sep 17 00:00:00 2001 From: arithmetic1728 <58957152+arithmetic1728@users.noreply.github.com> Date: Thu, 4 Jun 2020 12:19:21 -0700 Subject: [PATCH 1/2] fix: bump api-core version (#936) --- noxfile.py | 4 ---- setup.py | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/noxfile.py b/noxfile.py index ced9cf57632..d5bc2b30743 100644 --- a/noxfile.py +++ b/noxfile.py @@ -55,10 +55,6 @@ def lint(session): ], ) def unit(session, oauth2client): - session.install( - "-e", - "git+https://github.com/googleapis/python-api-core.git@master#egg=google-api-core", - ) session.install(*test_dependencies) session.install(oauth2client) if session.python < "3.0": diff --git a/setup.py b/setup.py index 6331a499113..a03eecc4d57 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ "httplib2>=0.9.2,<1dev", "google-auth>=1.16.0", "google-auth-httplib2>=0.0.3", - "google-api-core>=1.17.0,<2dev", + "google-api-core>=1.18.0,<2dev", "six>=1.6.1,<2dev", "uritemplate>=3.0.0,<4dev", ] From 47ca361419c358df69637c4b4a583a8ff4d55bce Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Tue, 9 Jun 2020 15:28:09 -0700 Subject: [PATCH 2/2] chore: release 1.9.2 (#937) * updated CHANGELOG.md [ci skip] * updated setup.py 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 90e7d9dbafb..8516e745aa1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +### [1.9.2](https://www.github.com/googleapis/google-api-python-client/compare/v1.9.1...v1.9.2) (2020-06-04) + + +### Bug Fixes + +* bump api-core version ([#936](https://www.github.com/googleapis/google-api-python-client/issues/936)) ([ee53b3b](https://www.github.com/googleapis/google-api-python-client/commit/ee53b3b32a050874ba4cfb491fb384f94682c824)) + ### [1.9.1](https://www.github.com/googleapis/google-api-python-client/compare/v1.9.0...v1.9.1) (2020-06-02) diff --git a/setup.py b/setup.py index a03eecc4d57..31215eb8c9b 100644 --- a/setup.py +++ b/setup.py @@ -52,7 +52,7 @@ with io.open(readme_filename, encoding="utf-8") as readme_file: readme = readme_file.read() -version = "1.9.1" +version = "1.9.2" setup( name="google-api-python-client",