Skip to content

Commit bcc9827

Browse files
authored
Changes for release v17_1. (#879)
1 parent 0f0fde3 commit bcc9827

File tree

1,659 files changed

+2266
-229720
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,659 files changed

+2266
-229720
lines changed

ChangeLog

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
* 25.0.0
2+
- Google Ads API v17_1 release.
3+
- Remove support for Google Ads API v15.
4+
- Add support for protobuf version 5
5+
- Add deprecation warning for Python 3.8 and below.
6+
17
* 24.1.0
28
- Google Ads API v17 release.
39
- Remove page_size parameter from Search requests in all examples.

google/ads/googleads/__init__.py

+9-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,12 @@
1919
import google.ads.googleads.errors
2020
import google.ads.googleads.util
2121

22-
VERSION = "24.1.0"
22+
VERSION = "25.0.0"
23+
24+
if sys.version_info.major == 3 and sys.version_info.minor <= 8:
25+
warnings.warn(
26+
"Python versions 3.8 and below will soon be deprecated in the "
27+
"google-ads package. Please upgrade to Python 3.9 or higher as soon as "
28+
"possible.",
29+
category=DeprecationWarning,
30+
)

google/ads/googleads/client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
_SERVICE_CLIENT_TEMPLATE = "{}Client"
3333

34-
_VALID_API_VERSIONS = ["v17", "v16", "v15"]
34+
_VALID_API_VERSIONS = ["v17", "v16"]
3535
_DEFAULT_VERSION = _VALID_API_VERSIONS[0]
3636

3737
# Retrieve the version of this client library to be sent in the user-agent

google/ads/googleads/v15/__init__.py

-1,951
This file was deleted.

google/ads/googleads/v15/common/__init__.py

-315
This file was deleted.

google/ads/googleads/v15/common/gapic_version.py

-16
This file was deleted.

google/ads/googleads/v15/common/services/__init__.py

-15
This file was deleted.

google/ads/googleads/v15/common/types/__init__.py

-15
This file was deleted.

0 commit comments

Comments
 (0)