diff --git a/CHANGELOG.md b/CHANGELOG.md index 260c05e..d7771ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +### [0.2.1](https://www.github.com/googleapis/python-life-sciences/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 ([#18](https://www.github.com/googleapis/python-life-sciences/issues/18)) ([f5adb94](https://www.github.com/googleapis/python-life-sciences/commit/f5adb941bc03cddea5243c58fce7e6fe7ca3c4bf)) + ## [0.2.0](https://www.github.com/googleapis/python-life-sciences/compare/v0.1.0...v0.2.0) (2021-07-14) diff --git a/setup.py b/setup.py index c30269c..d7511b7 100644 --- a/setup.py +++ b/setup.py @@ -22,11 +22,14 @@ name = "google-cloud-life-sciences" description = "Cloud Life Sciences client library" -version = "0.2.0" +version = "0.2.1" release_status = "Development Status :: 4 - Beta" url = "https://github.com/googleapis/python-life-sciences" 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", ]