From c614becae1f084819272a1f3fa732421d07fc90b Mon Sep 17 00:00:00 2001 From: Ben Karl Date: Wed, 26 Aug 2026 18:36:05 +0000 Subject: [PATCH 1/2] Update pyproject.toml according to PEP 639 --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 1072806e8..569dccb38 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,7 +22,7 @@ version = "31.4.0" description = "Client library for the Google Ads API" readme = "./README.rst" requires-python = ">=3.9, <3.15" -license = { file = "LICENSE" } +license-expression = "Apache-2.0" authors = [ {name = "Google LLC", email = "googleapis-packages@google.com"} ] @@ -68,4 +68,4 @@ Repository = "https://github.com/googleads/google-ads-python" [tool.setuptools.packages.find] include=["google.ads.*", "examples.*"] -exclude=["tests", "tests.*"] \ No newline at end of file +exclude=["tests", "tests.*"] From 225d196ffd947afd6f2f0822811f5155dcfec1e7 Mon Sep 17 00:00:00 2001 From: Ben Karl Date: Wed, 26 Aug 2026 23:46:52 +0000 Subject: [PATCH 2/2] Bump library to 31.4.1 --- ChangeLog | 3 +++ google/ads/googleads/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index fda79e1f9..826953296 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +* 31.4.1 +- Fix license expression in pyproject.toml + * 31.4.0 - Google Ads API v25_1 release. diff --git a/google/ads/googleads/__init__.py b/google/ads/googleads/__init__.py index b7e9f6a93..7d220d293 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.4.0" +VERSION = "31.4.1" # 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 569dccb38..08916d228 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,7 @@ build-backend = "setuptools.build_meta" [project] name = "google-ads" -version = "31.4.0" +version = "31.4.1" description = "Client library for the Google Ads API" readme = "./README.rst" requires-python = ">=3.9, <3.15"