Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
* 28.3.0
- Add support for Application Default Credentials (ADC) functionality.
- Add annotations to google/ads/googleads/*.py files.
- Add minor unit test improvements.

* 28.2.0
- Add support for Python 3.14.

Expand Down
2 changes: 1 addition & 1 deletion google/ads/googleads/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import google.ads.googleads.errors
import google.ads.googleads.util

VERSION = "28.2.0"
VERSION = "28.3.0"

# Checks if the current runtime is Python 3.9.
if sys.version_info.major == 3 and sys.version_info.minor <= 9:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "google-ads"
version = "28.2.0"
version = "28.3.0"
description = "Client library for the Google Ads API"
readme = "./README.rst"
requires-python = ">=3.9, <3.15"
Expand Down