From 6a43f3eeda92e9ad21b929a97b7d72e366e67228 Mon Sep 17 00:00:00 2001 From: raykkk Date: Fri, 27 Mar 2026 17:34:30 +0800 Subject: [PATCH] bump version --- pyproject.toml | 2 +- src/agentscope_runtime/engine/tracing/wrapper.py | 2 +- src/agentscope_runtime/version.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index a9b2eb363..79eebb112 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "agentscope-runtime" -version = "1.1.2b2" +version = "1.1.2b3" description = "A production-ready runtime framework for agent applications, providing secure sandboxed execution environments and scalable deployment solutions with multi-framework support." readme = "README.md" requires-python = ">=3.10" diff --git a/src/agentscope_runtime/engine/tracing/wrapper.py b/src/agentscope_runtime/engine/tracing/wrapper.py index 585ecfad0..85bfd31f4 100644 --- a/src/agentscope_runtime/engine/tracing/wrapper.py +++ b/src/agentscope_runtime/engine/tracing/wrapper.py @@ -466,7 +466,7 @@ async def iter_entry() -> AsyncGenerator[T_co, None]: async for resp in iter_entry(): yield resp - except Exception as e: + except BaseException as e: raise e @wraps(func) diff --git a/src/agentscope_runtime/version.py b/src/agentscope_runtime/version.py index ef0477a73..1f8d1a654 100644 --- a/src/agentscope_runtime/version.py +++ b/src/agentscope_runtime/version.py @@ -1,2 +1,2 @@ # -*- coding: utf-8 -*- -__version__ = "v1.1.2b2" +__version__ = "v1.1.2b3"