Skip to content

Commit d9e6219

Browse files
authored
chore: bump version to 1.1.4 (#479)
1 parent de0a10f commit d9e6219

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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.3"
3+
version = "1.1.4"
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/adapters/agentscope/message.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ def is_valid_block(obj):
265265
)
266266
else:
267267
parsed_url = urlparse(value)
268-
if parsed_url.scheme and parsed_url.netloc:
268+
if parsed_url.scheme:
269269
url_source = URLSource(type="url", url=value)
270270
msg_content.append(
271271
block_cls(type=cnt_type, source=url_source),

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.3"
2+
__version__ = "v1.1.4"

0 commit comments

Comments
 (0)