Skip to content

Commit 0edd3a9

Browse files
committed
bump version
1 parent b82a1ff commit 0edd3a9

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "agentscope-runtime"
3-
version = "1.1.2"
3+
version = "1.1.3"
44
description = "A production-ready runtime framework for agent applications, providing secure sandboxed execution environments and scalable deployment solutions with multi-framework support."
55
readme = "README.md"
66
requires-python = ">=3.10"

src/agentscope_runtime/engine/schemas/agent_schemas.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -903,6 +903,8 @@ def add_new_message(self, message: Message):
903903

904904
def completed(self) -> Self:
905905
self.completed_at = int(datetime.now().timestamp())
906+
if self.output is None:
907+
self.output = []
906908
return super().completed()
907909

908910

src/agentscope_runtime/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# -*- coding: utf-8 -*-
2-
__version__ = "v1.1.2"
2+
__version__ = "v1.1.3"

0 commit comments

Comments
 (0)