diff --git a/CHANGELOG.md b/CHANGELOG.md index 05c3b47..3989203 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.0] - 2026-05-13 + +### Changed +- Pin `capiscio-sdk` dependency to `>=2.7.0` for RFC-008 authority envelope support +- Update references to `CapiscioMCPServer.connect()` API (#10) + +### Fixed +- API signature docs, pydantic dependency, URL corrections (#9) + ## [0.1.0] - 2026-03-16 ### Added diff --git a/pyproject.toml b/pyproject.toml index d359499..decde62 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "langchain-capiscio" -version = "0.1.0" +version = "0.2.0" description = "Trust enforcement adapter for LangChain and LangGraph — powered by CapiscIO" readme = "README.md" license = {text = "Apache-2.0"} @@ -26,7 +26,7 @@ classifiers = [ "Topic :: Software Development :: Libraries :: Python Modules", ] dependencies = [ - "capiscio-sdk>=2.6.0", + "capiscio-sdk>=2.7.0", "langchain-core>=0.3", "pydantic>=2.0", ]