From 5eefe9810f585e68c3bbcdb9f524f977b327907a Mon Sep 17 00:00:00 2001 From: Ben Karl Date: Wed, 11 Feb 2026 18:02:21 +0000 Subject: [PATCH] Bump library to 29.1.0 --- 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 9c78caeff..8733cf717 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +* 29.1.0 +- Add configurable metadata header for ads api assistant. + * 29.0.0 - Google Ads API v23_0 release. - Remove Google Ads API v19. diff --git a/google/ads/googleads/__init__.py b/google/ads/googleads/__init__.py index 0826212b4..45b8bfa1d 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 = "29.0.0" +VERSION = "29.1.0" # Checks if the current runtime is Python 3.9. if sys.version_info.major == 3 and sys.version_info.minor <= 9: diff --git a/pyproject.toml b/pyproject.toml index a7e0fbbc3..666844fc2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,7 @@ build-backend = "setuptools.build_meta" [project] name = "google-ads" -version = "29.0.0" +version = "29.1.0" description = "Client library for the Google Ads API" readme = "./README.rst" requires-python = ">=3.9, <3.15"