Skip to content

Commit

Permalink
Release version 15.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
BenRKarl authored Apr 6, 2022
1 parent 4c2560c commit 73e61d5
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
* 15.1.1
- Bump protobuf dependency to 3.20.0 excluding 3.18.* and 3.19.*.
- Remove duplicate google-api-core dependency.

* 15.1.0
- Fix issue preventing streaming responses from being logged.
- Expose logging utilities for external interceptor logic.
Expand Down
2 changes: 1 addition & 1 deletion google/ads/googleads/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
import google.ads.googleads.util


VERSION = "15.1.0"
VERSION = "15.1.1"
14 changes: 6 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
# https://github.com/googleapis/google-cloud-python/issues/10566
# is resolved. Once resolved, require google-api-core >=2.3.2.
"google-api-core >= 1.31.5, < 3.0.0dev,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0",
"google-api-core >= 2.0.1, < 3.0.0",
"googleapis-common-protos >= 1.5.8, < 2.0.0",
# NOTE: Source code for grpcio and grpcio-status exist in the same
# grpc/grpc monorepo and thus these two dependencies should always
Expand All @@ -32,7 +31,10 @@
"proto-plus == 1.19.6",
"PyYAML >= 5.1, < 6.0",
"setuptools >= 40.3.0",
"protobuf >= 3.12.0, < 3.18.0",
# Protobuf versions 3.18.* and 3.19.* are incompatible with this
# library due to performance issues. See the following for more details:
# https://github.com/protocolbuffers/protobuf/issues/9180
"protobuf >= 3.12.0, <= 3.20.0,!=3.18.*,!=3.19.*",
]

with io.open("README.rst", "r", encoding="utf-8") as readme_file:
Expand All @@ -41,7 +43,7 @@

setup(
name="google-ads",
version="15.1.0",
version="15.1.1",
author="Google LLC",
author_email="googleapis-packages@google.com",
classifiers=[
Expand All @@ -58,11 +60,7 @@
python_requires=">=3.7",
long_description=long_description,
install_requires=install_requires,
extras_require={
"tests": [
"nox >= 2020.12.31, < 2022.6",
]
},
extras_require={"tests": ["nox >= 2020.12.31, < 2022.6",]},
license="Apache 2.0",
packages=find_packages(
exclude=["examples", "examples.*", "tests", "tests.*"]
Expand Down

0 comments on commit 73e61d5

Please sign in to comment.