From 543c3aca4befa1e41a479c00b1c7b288a9777b8f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 23 May 2026 13:17:37 +0000 Subject: [PATCH 1/2] chore(main): release 6.0.0-beta.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 18 ++++++++++++++++++ pyproject.toml | 2 +- 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 68f9449d5..d41bd0f11 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "5.7.0" + ".": "6.0.0-beta.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index a37b5d367..e897d7787 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## [6.0.0-beta.1](https://github.com/adcontextprotocol/adcp-client-python/compare/v5.7.0...v6.0.0-beta.1) (2026-05-23) + + +### Features + +* **testing:** make SellerA2AClient event drain configurable ([#829](https://github.com/adcontextprotocol/adcp-client-python/issues/829)) ([62515d8](https://github.com/adcontextprotocol/adcp-client-python/commit/62515d85fe3753dcbfde8737c33f42a4a7829bb1)) + + +### Bug Fixes + +* send AAO directory pagination cursor as cursor ([#811](https://github.com/adcontextprotocol/adcp-client-python/issues/811)) ([da91183](https://github.com/adcontextprotocol/adcp-client-python/commit/da9118338856e78d00f08d12b0fd3178d819cfe5)) + + +### Documentation + +* add MIGRATION_v5_to_v6 stub for the 6.0-beta line ([#823](https://github.com/adcontextprotocol/adcp-client-python/issues/823)) ([c3837af](https://github.com/adcontextprotocol/adcp-client-python/commit/c3837af96f58dc37c22dbef47a02a2bbcaad3bf2)), closes [#802](https://github.com/adcontextprotocol/adcp-client-python/issues/802) +* **types:** refresh import-architecture references (closes [#807](https://github.com/adcontextprotocol/adcp-client-python/issues/807)) ([#828](https://github.com/adcontextprotocol/adcp-client-python/issues/828)) ([169bc80](https://github.com/adcontextprotocol/adcp-client-python/commit/169bc80d435c5f441960a0fc03687b6a126abd2d)) + ## [5.7.0](https://github.com/adcontextprotocol/adcp-client-python/compare/v5.6.0...v5.7.0) (2026-05-22) diff --git a/pyproject.toml b/pyproject.toml index d46b3b281..945e00686 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "adcp" -version = "5.7.0" +version = "6.0.0-beta.1" description = "Official Python client for the Ad Context Protocol (AdCP)" authors = [ {name = "AdCP Community", email = "maintainers@adcontextprotocol.org"} From 11360aae885952d3ac1293cf6656c88a41a05843 Mon Sep 17 00:00:00 2001 From: Brian O'Kelley Date: Sat, 23 May 2026 09:22:33 -0400 Subject: [PATCH 2/2] fix(release): normalize pyproject.toml version to PEP 440 (6.0.0b1) --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 945e00686..5aee152e4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "adcp" -version = "6.0.0-beta.1" +version = "6.0.0b1" description = "Official Python client for the Ad Context Protocol (AdCP)" authors = [ {name = "AdCP Community", email = "maintainers@adcontextprotocol.org"}