diff --git a/astrbot/cli/__init__.py b/astrbot/cli/__init__.py index 2fe53d9fd..26d864175 100644 --- a/astrbot/cli/__init__.py +++ b/astrbot/cli/__init__.py @@ -1 +1 @@ -__version__ = "4.19.3" +__version__ = "4.19.4" diff --git a/astrbot/core/config/default.py b/astrbot/core/config/default.py index f1280ba7c..bdabcd933 100644 --- a/astrbot/core/config/default.py +++ b/astrbot/core/config/default.py @@ -5,7 +5,7 @@ from typing import Any, TypedDict from astrbot.core.utils.astrbot_path import get_astrbot_data_path -VERSION = "4.19.3" +VERSION = "4.19.4" DB_PATH = os.path.join(get_astrbot_data_path(), "data_v4.db") WEBHOOK_SUPPORTED_PLATFORMS = [ diff --git a/changelogs/v4.19.4.md b/changelogs/v4.19.4.md new file mode 100644 index 000000000..33244ff08 --- /dev/null +++ b/changelogs/v4.19.4.md @@ -0,0 +1,9 @@ +## What's Changed + +### 新增 + +- 企业微信智能机器人支持长连接模式。[#5930](https://github.com/AstrBotDevs/AstrBot/pull/5930) + +### New + +- Wecom AI Bot supports long-connection mode(Websockets). [#5930](https://github.com/AstrBotDevs/AstrBot/pull/5930) \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index a9e8c060d..6c441f89a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "AstrBot" -version = "4.19.3" +version = "4.19.4" description = "Easy-to-use multi-platform LLM chatbot and development framework" readme = "README.md" requires-python = ">=3.12"