Skip to content

Commit 73e61d5

Browse files
authored
Release version 15.1.1
1 parent 4c2560c commit 73e61d5

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
* 15.1.1
2+
- Bump protobuf dependency to 3.20.0 excluding 3.18.* and 3.19.*.
3+
- Remove duplicate google-api-core dependency.
4+
15
* 15.1.0
26
- Fix issue preventing streaming responses from being logged.
37
- Expose logging utilities for external interceptor logic.

google/ads/googleads/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
import google.ads.googleads.util
1919

2020

21-
VERSION = "15.1.0"
21+
VERSION = "15.1.1"

setup.py

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
# https://github.com/googleapis/google-cloud-python/issues/10566
2323
# is resolved. Once resolved, require google-api-core >=2.3.2.
2424
"google-api-core >= 1.31.5, < 3.0.0dev,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0",
25-
"google-api-core >= 2.0.1, < 3.0.0",
2625
"googleapis-common-protos >= 1.5.8, < 2.0.0",
2726
# NOTE: Source code for grpcio and grpcio-status exist in the same
2827
# grpc/grpc monorepo and thus these two dependencies should always
@@ -32,7 +31,10 @@
3231
"proto-plus == 1.19.6",
3332
"PyYAML >= 5.1, < 6.0",
3433
"setuptools >= 40.3.0",
35-
"protobuf >= 3.12.0, < 3.18.0",
34+
# Protobuf versions 3.18.* and 3.19.* are incompatible with this
35+
# library due to performance issues. See the following for more details:
36+
# https://github.com/protocolbuffers/protobuf/issues/9180
37+
"protobuf >= 3.12.0, <= 3.20.0,!=3.18.*,!=3.19.*",
3638
]
3739

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

4244
setup(
4345
name="google-ads",
44-
version="15.1.0",
46+
version="15.1.1",
4547
author="Google LLC",
4648
author_email="[email protected]",
4749
classifiers=[
@@ -58,11 +60,7 @@
5860
python_requires=">=3.7",
5961
long_description=long_description,
6062
install_requires=install_requires,
61-
extras_require={
62-
"tests": [
63-
"nox >= 2020.12.31, < 2022.6",
64-
]
65-
},
63+
extras_require={"tests": ["nox >= 2020.12.31, < 2022.6",]},
6664
license="Apache 2.0",
6765
packages=find_packages(
6866
exclude=["examples", "examples.*", "tests", "tests.*"]

0 commit comments

Comments
 (0)