diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a915e8c..001eb2c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.1" + ".": "0.1.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index a126e7b..efa30d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.1.2](https://github.com/adcontextprotocol/adcp-client-python/compare/v0.1.1...v0.1.2) (2025-11-05) + + +### Bug Fixes + +* correct secret name from PYPI_API_TOKEN to PYPY_API_TOKEN ([0b7599d](https://github.com/adcontextprotocol/adcp-client-python/commit/0b7599d09321c8a12e934a249817816f60b92372)) + ## [0.1.1](https://github.com/adcontextprotocol/adcp-client-python/compare/v0.1.0...v0.1.1) (2025-11-05) diff --git a/pyproject.toml b/pyproject.toml index 178f16d..0bb4311 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "adcp" -version = "0.1.1" +version = "0.1.2" 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 1d38b7c..ef9c4ae 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.1" +__version__ = "0.1.2" __all__ = [ "ADCPClient", "ADCPMultiAgentClient",