From b2e3df100429c0ac0b4f62f2dc802dcad927bb90 Mon Sep 17 00:00:00 2001 From: raychen <815315825@qq.com> Date: Fri, 24 Apr 2026 15:25:42 +0800 Subject: [PATCH] =?UTF-8?q?version:=20=E5=8F=91=E5=B8=831.1.2=E7=89=88?= =?UTF-8?q?=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 12 ++++++++++++ tests/test_version.py | 2 +- trpc_agent_sdk/version.py | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a593d4c..d0c57c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [1.1.2](https://github.com/trpc-group/trpc-agent-python/releases/tag/v1.1.2) (2026-04-24) + +### Features + +* Telemetry: Added OpenTelemetry metrics reporting and introduced `custom_metrics` to support framework metric reporting when parsing remote agent responses. +* Tools: Added `web_search` with DuckDuckGo and Google providers, and added `web_fetch` for webpage content retrieval. +* Docs/Examples: Added usage documentation and examples for `web_search` and `web_fetch`. + +### Bug Fixes + +* Teams: Fixed parallel delegation signal loss and enabled streaming output in team delegation flows. + ## [1.1.1](https://github.com/trpc-group/trpc-agent-python/releases/tag/v1.1.1) (2026-04-20) ### Features diff --git a/tests/test_version.py b/tests/test_version.py index f05b6e1..347e79f 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.1' + assert __version__ == '1.1.2' diff --git a/trpc_agent_sdk/version.py b/trpc_agent_sdk/version.py index 8ed1d4b..58b4df0 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.1' +__version__ = '1.1.2'