From 3ef864eaf89dea52d45625afcb2f8af0d8383df3 Mon Sep 17 00:00:00 2001 From: "aao-ipr-bot[bot]" <279263549+aao-ipr-bot[bot]@users.noreply.github.com> Date: Wed, 5 Aug 2026 02:55:00 +0000 Subject: [PATCH 1/3] chore(main): release 7.0.0-rc.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ pyproject.toml | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index ed0e03fd..5ae089a7 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "7.0.0-rc" + ".": "7.0.0-rc.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 860d33d7..e36fd630 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [7.0.0-rc.1](https://github.com/adcontextprotocol/adcp-client-python/compare/v7.0.0-rc...v7.0.0-rc.1) (2026-08-05) + + +### Features + +* **protocol:** support AdCP 3.1.10 schemas ([#1012](https://github.com/adcontextprotocol/adcp-client-python/issues/1012)) ([dbf3df8](https://github.com/adcontextprotocol/adcp-client-python/commit/dbf3df881d46421e494171b64cf4a5cf10a9103c)) + + +### Bug Fixes + +* **client:** preserve canonical format options ([#1006](https://github.com/adcontextprotocol/adcp-client-python/issues/1006)) ([96396b9](https://github.com/adcontextprotocol/adcp-client-python/commit/96396b93bdd6680c2ba06207ad18f61de744620c)) +* **release:** compare normalized prerelease versions ([#1015](https://github.com/adcontextprotocol/adcp-client-python/issues/1015)) ([87140b4](https://github.com/adcontextprotocol/adcp-client-python/commit/87140b4aa76b67d26b57a5abb13d21dad06e0b47)) + ## [7.0.0-rc](https://github.com/adcontextprotocol/adcp-client-python/compare/v6.6.0...v7.0.0-rc) (2026-07-29) diff --git a/pyproject.toml b/pyproject.toml index e1eaab5c..5b8cb1d9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "adcp" -version = "7.0.0-rc" +version = "7.0.0-rc.1" description = "Official Python client for the Ad Context Protocol (AdCP)" authors = [ {name = "AdCP Community", email = "maintainers@adcontextprotocol.org"} From 18a124630b620da0761a6b19ce4d82944fbc568a Mon Sep 17 00:00:00 2001 From: "aao-ipr-bot[bot]" Date: Wed, 5 Aug 2026 02:55:13 +0000 Subject: [PATCH 2/3] chore: normalize prerelease version to PEP 440 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 5b8cb1d9..52b33a72 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "adcp" -version = "7.0.0-rc.1" +version = "7.0.0rc1" description = "Official Python client for the Ad Context Protocol (AdCP)" authors = [ {name = "AdCP Community", email = "maintainers@adcontextprotocol.org"} From 7f0c849ad7b2ef523a2c5a5c0a2e5b75939f37e9 Mon Sep 17 00:00:00 2001 From: Brian O'Kelley Date: Wed, 5 Aug 2026 04:56:06 +0200 Subject: [PATCH 3/3] docs: note experimental TMPX migration --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e36fd630..a06914fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,11 @@ * **protocol:** support AdCP 3.1.10 schemas ([#1012](https://github.com/adcontextprotocol/adcp-client-python/issues/1012)) ([dbf3df8](https://github.com/adcontextprotocol/adcp-client-python/commit/dbf3df881d46421e494171b64cf4a5cf10a9103c)) +### Migration Notes + +* **Experimental Trusted Match/TMPX:** AdCP 3.1.10 replaces provider-supplied `tmpx_macros`/`macros` with publisher-owned `tmpx_slots`/`chunks`. `IdentityMatchResponse` now models the router-to-publisher response shape; its import alias remains available, but old-shape payloads no longer validate. + + ### Bug Fixes * **client:** preserve canonical format options ([#1006](https://github.com/adcontextprotocol/adcp-client-python/issues/1006)) ([96396b9](https://github.com/adcontextprotocol/adcp-client-python/commit/96396b93bdd6680c2ba06207ad18f61de744620c))