From b6407e1608fbd64c8666698de89280c6aa5e7ed8 Mon Sep 17 00:00:00 2001 From: raychen <815315825@qq.com> Date: Wed, 29 Apr 2026 16:58:35 +0800 Subject: [PATCH] =?UTF-8?q?version:=20=E5=8F=91=E5=B8=831.1.2.post1?= =?UTF-8?q?=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 13 +++++++++++++ tests/test_version.py | 2 +- trpc_agent_sdk/version.py | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d0c57c4..e31153d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [1.1.2.post1](https://github.com/trpc-group/trpc-agent-python/releases/tag/v1.1.2.post1) (2026-04-29) + +### Features + +* Session: Updated session summarization to retain full conversation history while marking summarized events as model-invisible. +* Session: Added backend-threaded summarization execution to avoid blocking front-end conversation turns. +* Skill: Added multi-user support for skill operations. + +### Bug Fixes + +* Code Execution: Fixed the conflict between code execution and tool invocation where tool data could be lost after code execution. +* MCP: Added support for parsing and returning multiple MCP tool results in a single response. + ## [1.1.2](https://github.com/trpc-group/trpc-agent-python/releases/tag/v1.1.2) (2026-04-24) ### Features diff --git a/tests/test_version.py b/tests/test_version.py index 347e79f..1d2a84d 100644 --- a/tests/test_version.py +++ b/tests/test_version.py @@ -10,4 +10,4 @@ def test_version(): """Test the version module.""" - assert __version__ == '1.1.2' + assert __version__ == '1.1.2.post1' diff --git a/trpc_agent_sdk/version.py b/trpc_agent_sdk/version.py index 58b4df0..709bc9d 100644 --- a/trpc_agent_sdk/version.py +++ b/trpc_agent_sdk/version.py @@ -9,4 +9,4 @@ This module defines the version information for TRPC Agent """ -__version__ = '1.1.2' +__version__ = '1.1.2.post1'