From b24371f8ac5b73adebab0231803f5dd2cdc773e1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 5 Nov 2025 16:31:47 +0000 Subject: [PATCH] chore(main): release 0.1.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ pyproject.toml | 2 +- src/adcp/__init__.py | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 466df71..a915e8c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.0" + ".": "0.1.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 4035bf3..a126e7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.1.1](https://github.com/adcontextprotocol/adcp-client-python/compare/v0.1.0...v0.1.1) (2025-11-05) + + +### Bug Fixes + +* remove deprecated package-name parameter from release-please config ([28d8154](https://github.com/adcontextprotocol/adcp-client-python/commit/28d8154a8185e6c841804b39e7381f6bb22bde03)) + ## 0.1.0 (2025-11-05) diff --git a/pyproject.toml b/pyproject.toml index cc52f87..178f16d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "adcp" -version = "0.1.0" +version = "0.1.1" description = "Official Python client for the Ad Context Protocol (AdCP)" authors = [ {name = "AdCP Community", email = "maintainers@adcontextprotocol.org"} diff --git a/src/adcp/__init__.py b/src/adcp/__init__.py index f2fdcc3..1d38b7c 100644 --- a/src/adcp/__init__.py +++ b/src/adcp/__init__.py @@ -8,7 +8,7 @@ from adcp.client import ADCPClient, ADCPMultiAgentClient from adcp.types.core import AgentConfig, TaskResult, WebhookMetadata -__version__ = "0.1.0" +__version__ = "0.1.1" __all__ = [ "ADCPClient", "ADCPMultiAgentClient",