Skip to content

Commit

Permalink
Changes for release v17_1. (#879)
Browse files Browse the repository at this point in the history
  • Loading branch information
BenRKarl authored Aug 8, 2024
1 parent 0f0fde3 commit bcc9827
Show file tree
Hide file tree
Showing 1,659 changed files with 2,266 additions and 229,720 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
* 25.0.0
- Google Ads API v17_1 release.
- Remove support for Google Ads API v15.
- Add support for protobuf version 5
- Add deprecation warning for Python 3.8 and below.

* 24.1.0
- Google Ads API v17 release.
- Remove page_size parameter from Search requests in all examples.
Expand Down
10 changes: 9 additions & 1 deletion google/ads/googleads/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,12 @@
import google.ads.googleads.errors
import google.ads.googleads.util

VERSION = "24.1.0"
VERSION = "25.0.0"

if sys.version_info.major == 3 and sys.version_info.minor <= 8:
warnings.warn(
"Python versions 3.8 and below will soon be deprecated in the "
"google-ads package. Please upgrade to Python 3.9 or higher as soon as "
"possible.",
category=DeprecationWarning,
)
2 changes: 1 addition & 1 deletion google/ads/googleads/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

_SERVICE_CLIENT_TEMPLATE = "{}Client"

_VALID_API_VERSIONS = ["v17", "v16", "v15"]
_VALID_API_VERSIONS = ["v17", "v16"]
_DEFAULT_VERSION = _VALID_API_VERSIONS[0]

# Retrieve the version of this client library to be sent in the user-agent
Expand Down
1,951 changes: 0 additions & 1,951 deletions google/ads/googleads/v15/__init__.py

This file was deleted.

315 changes: 0 additions & 315 deletions google/ads/googleads/v15/common/__init__.py

This file was deleted.

16 changes: 0 additions & 16 deletions google/ads/googleads/v15/common/gapic_version.py

This file was deleted.

15 changes: 0 additions & 15 deletions google/ads/googleads/v15/common/services/__init__.py

This file was deleted.

15 changes: 0 additions & 15 deletions google/ads/googleads/v15/common/types/__init__.py

This file was deleted.

Loading

0 comments on commit bcc9827

Please sign in to comment.