diff --git a/README.md b/README.md index 2b58508cf..c5f59b8b0 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ ## 🆕 NEWS -* **[2026-02]** A major architectural refactor of `AgentApp`. By adopting direct inheritance from `FastAPI` and deprecating the previous factory pattern, `AgentApp` now offers seamless integration with the full FastAPI ecosystem, significantly boosting extensibility. Furthermore, we've introduced a **Distributed Interrupt Service**, enabling manual task preemption during agent execution and allowing developers to customize state persistence and recovery logic flexibly. +* **[2026-02]** A major architectural refactor of `AgentApp` in **v1.1.0**. By adopting direct inheritance from `FastAPI` and deprecating the previous factory pattern, `AgentApp` now offers seamless integration with the full FastAPI ecosystem, significantly boosting extensibility. Furthermore, we've introduced a **Distributed Interrupt Service**, enabling manual task preemption during agent execution and allowing developers to customize state persistence and recovery logic flexibly. Please refer to the **[CHANGELOG](https://runtime.agentscope.io/en/CHANGELOG.html)** for full update details and migration guide. * **[2026-01]** Added **asynchronous sandbox** implementations (`BaseSandboxAsync`, `GuiSandboxAsync`, `BrowserSandboxAsync`, `FilesystemSandboxAsync`, `MobileSandboxAsync`) enabling non-blocking, concurrent tool execution in async program. Improved `run_ipython_cell` and `run_shell_command` methods with enhanced **concurrency and parallel execution** capabilities for more efficient sandbox operations. * **[2025-12]** We have released **AgentScope Runtime v1.0**, introducing a unified “Agent as API” white-box development experience, with enhanced multi-agent collaboration, state persistence, and cross-framework integration. This release also streamlines abstractions and modules to ensure consistency between development and production environments. Please refer to the **[CHANGELOG](https://runtime.agentscope.io/en/CHANGELOG.html)** for full update details and migration guide. diff --git a/README_zh.md b/README_zh.md index 8f8d1367a..ed9caa461 100644 --- a/README_zh.md +++ b/README_zh.md @@ -77,7 +77,7 @@ ## 🆕 新闻 -* **[2026-02]** 我们对 `AgentApp` 进行了核心架构重构。新版本采用直接继承 `FastAPI` 的设计,废弃了原有的工厂类模式,使开发者能够直接利用完整的 FastAPI 生态,显著提升了应用的可扩展性。此外,新版本引入了分布式**任务中断管理服务**,支持在 Agent 推理过程中进行实时干预,并允许灵活自定义中断前后的状态保存与恢复逻辑。 +* **[2026-02]** 我们在**v1.1.0版本**对 `AgentApp` 进行了核心架构重构。新版本采用直接继承 `FastAPI` 的设计,废弃了原有的工厂类模式,使开发者能够直接利用完整的 FastAPI 生态,显著提升了应用的可扩展性。此外,新版本引入了分布式**任务中断管理服务**,支持在 Agent 推理过程中进行实时干预,并允许灵活自定义中断前后的状态保存与恢复逻辑。完整更新内容与迁移说明请参考 **[CHANGELOG](https://runtime.agentscope.io/zh/CHANGELOG.html)**。 * **[2026-01]** 新增 **异步沙箱** 实现(`BaseSandboxAsync`、`GuiSandboxAsync`、`BrowserSandboxAsync`、`FilesystemSandboxAsync`、`MobileSandboxAsync`),支持在异步编程中进行非阻塞的并发工具执行。 同时优化了 `run_ipython_cell` 和 `run_shell_command` 方法的 **并发与并行执行能力**,提升沙箱运行效率。 * **[2025-12]** 我们发布了 **AgentScope Runtime v1.0**,该版本引入统一的 “Agent 作为 API” 白盒化开发体验,并全面强化多智能体协作、状态持久化与跨框架组合能力,同时对抽象与模块进行了简化优化,确保开发与生产环境一致性。完整更新内容与迁移说明请参考 **[CHANGELOG](https://runtime.agentscope.io/zh/CHANGELOG.html)**。 diff --git a/pyproject.toml b/pyproject.toml index f14191d00..f0fc7ddf8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "agentscope-runtime" -version = "1.1.0b5" +version = "1.1.0" 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/version.py b/src/agentscope_runtime/version.py index 219113e28..ad8ed278d 100644 --- a/src/agentscope_runtime/version.py +++ b/src/agentscope_runtime/version.py @@ -1,2 +1,2 @@ # -*- coding: utf-8 -*- -__version__ = "v1.1.0b5" +__version__ = "v1.1.0"