From e1ea5635ebdfac5cd349f8bbcda0d52886629659 Mon Sep 17 00:00:00 2001 From: "liujiashu.shiro" Date: Wed, 17 Jun 2026 22:20:12 +0800 Subject: [PATCH] feat: support content_v2 --- lark_channel/core/const.py | 2 +- tests/package_identity/test_import_identity.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lark_channel/core/const.py b/lark_channel/core/const.py index 9fd0f34..0d274de 100644 --- a/lark_channel/core/const.py +++ b/lark_channel/core/const.py @@ -1,6 +1,6 @@ # Info PROJECT = "channel-sdk-python" -VERSION = "1.0.0" +VERSION = "1.0.1" # Domain FEISHU_DOMAIN = "https://open.feishu.cn" diff --git a/tests/package_identity/test_import_identity.py b/tests/package_identity/test_import_identity.py index df554a5..012ea65 100644 --- a/tests/package_identity/test_import_identity.py +++ b/tests/package_identity/test_import_identity.py @@ -29,7 +29,7 @@ def test_transport_keepalive_config_imports_from_package_root(): assert KeepaliveConfig is ChannelKeepaliveConfig -def test_release_version_is_1_0_0(): +def test_release_version(): from lark_channel.core.const import VERSION - assert VERSION == "1.0.0" + assert VERSION == "1.0.1"