From 57dcd29e48081ed7bcae0cd116fb8efee75c3094 Mon Sep 17 00:00:00 2001 From: Beon de Nood Date: Tue, 28 Apr 2026 23:35:08 -0400 Subject: [PATCH] fix: align __version__ and CORE_VERSION with pyproject.toml 2.6.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit __version__ was 2.5.0 while pyproject.toml already declared 2.6.0. CORE_VERSION also pointed to 2.5.0 — capiscio-core v2.6.0 release exists. --- capiscio_sdk/__init__.py | 2 +- capiscio_sdk/_rpc/process.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/capiscio_sdk/__init__.py b/capiscio_sdk/__init__.py index d467831..1a154f2 100644 --- a/capiscio_sdk/__init__.py +++ b/capiscio_sdk/__init__.py @@ -14,7 +14,7 @@ >>> result = validate_agent_card(card_dict) # Uses Go core """ -__version__ = "2.5.0" +__version__ = "2.6.0" # Core exports from .executor import CapiscioSecurityExecutor, secure, secure_agent diff --git a/capiscio_sdk/_rpc/process.py b/capiscio_sdk/_rpc/process.py index 3e7475e..188b5f8 100644 --- a/capiscio_sdk/_rpc/process.py +++ b/capiscio_sdk/_rpc/process.py @@ -52,7 +52,7 @@ def _cleanup_stale_sockets() -> None: pass # Binary download configuration -CORE_VERSION = "2.5.0" +CORE_VERSION = "2.6.0" GITHUB_REPO = "capiscio/capiscio-core" CACHE_DIR = DEFAULT_SOCKET_DIR / "bin"