diff --git a/ChangeLog b/ChangeLog index 8beccf2d4..61604c05d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +* 31.3.0 +- Add logging functionality to examples. +- Update pyproject.toml license configuration. + * 31.2.0 - Google Ads API v25_0 release. - Remove `LocalServicesLead.contact_details.email` from the masking logic in diff --git a/google/ads/googleads/__init__.py b/google/ads/googleads/__init__.py index 4e9c4e06f..582913d08 100644 --- a/google/ads/googleads/__init__.py +++ b/google/ads/googleads/__init__.py @@ -19,7 +19,7 @@ import google.ads.googleads.errors import google.ads.googleads.util -VERSION = "31.2.0" +VERSION = "31.3.0" # Checks if the current runtime is Python 3.10. if sys.version_info.major == 3 and sys.version_info.minor <= 10: diff --git a/pyproject.toml b/pyproject.toml index 254a2610d..0dc2a358f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,7 @@ build-backend = "setuptools.build_meta" [project] name = "google-ads" -version = "31.2.0" +version = "31.3.0" description = "Client library for the Google Ads API" readme = "./README.rst" requires-python = ">=3.9, <3.15"