From 1431398de7010a2f2b75c573c04873b7eaf58644 Mon Sep 17 00:00:00 2001 From: Ben Karl Date: Wed, 5 Aug 2026 18:55:00 +0000 Subject: [PATCH] Bump library to 31.3.0 --- ChangeLog | 4 ++++ google/ads/googleads/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) 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"