From 1d84d35e3f5e48f6823bbcbabcea73a8e34593b4 Mon Sep 17 00:00:00 2001 From: kanywst Date: Fri, 26 Jun 2026 23:48:03 +0900 Subject: [PATCH] chore(release): bump version to 0.3.0 Patch-level hardening over 0.2.0, all backward compatible: - executor: prefer evicting parked sessions at capacity and fail an evicted running task explicitly instead of completing it with partial output; serialize admission to keep the live-session map within its bound - executor: make the session-continuity cache eviction least-recently-used so an actively reused context is not dropped before idle ones - cli: validate --permission-mode at startup with a clear error, degrading gracefully when the SDK literal is unavailable - docs: add CLAUDE.md The agent card version tracks the package version via importlib.metadata, so this single bump is the source of truth. --- pyproject.toml | 2 +- uv.lock | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 66da77a..19e962b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "a2claude" -version = "0.2.0" +version = "0.3.0" description = "Run Claude Code as an A2A protocol agent server." readme = "README.md" requires-python = ">=3.13" diff --git a/uv.lock b/uv.lock index 77c5979..38d1112 100644 --- a/uv.lock +++ b/uv.lock @@ -40,7 +40,7 @@ telemetry = [ [[package]] name = "a2claude" -version = "0.2.0" +version = "0.3.0" source = { editable = "." } dependencies = [ { name = "a2a-sdk", extra = ["http-server", "signing"] },