From 6dcb67fb57efe494dae4d5723f17ebea9edf350d Mon Sep 17 00:00:00 2001 From: beacoder Date: Fri, 21 Aug 2026 21:55:06 +0800 Subject: [PATCH] Bump version to 1.3.0 --- pyproject.toml | 2 +- python_agent_harness/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 8d03954..b2c11e2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "python-agent-harness" -version = "1.2.0" +version = "1.3.0" description = "Python agent execution harness: agent loop, tools, plan/build modes, sessions" readme = "README.md" requires-python = ">=3.11" diff --git a/python_agent_harness/__init__.py b/python_agent_harness/__init__.py index bc77def..e3b1121 100644 --- a/python_agent_harness/__init__.py +++ b/python_agent_harness/__init__.py @@ -5,7 +5,7 @@ from .mcp.manager import MCPManager from .models import AgentMode, Message, ToolCall, ToolSpec -__version__ = "1.2.0" +__version__ = "1.3.0" __all__ = [ "AgentSession",