diff --git a/astrbot/cli/__init__.py b/astrbot/cli/__init__.py index 9c8b8e07d..958d33c76 100644 --- a/astrbot/cli/__init__.py +++ b/astrbot/cli/__init__.py @@ -1 +1 @@ -__version__ = "4.14.0" +__version__ = "4.14.1" diff --git a/astrbot/core/config/default.py b/astrbot/core/config/default.py index 774cb97ce..12056a04e 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.14.0" +VERSION = "4.14.1" DB_PATH = os.path.join(get_astrbot_data_path(), "data_v4.db") WEBHOOK_SUPPORTED_PLATFORMS = [ diff --git a/changelogs/v4.14.1.md b/changelogs/v4.14.1.md new file mode 100644 index 000000000..cb1d14288 --- /dev/null +++ b/changelogs/v4.14.1.md @@ -0,0 +1,7 @@ +## What's Changed - BIG AND BEAUTIFUL VERSION + +hotfix of v4.14.0 + +fixes: + +- 由 `event.request_llm()` 过时导致的群聊上下文感知-主动回复功能可能不可用的问题 \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 97b3b4cf6..35eb5a73d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "AstrBot" -version = "4.14.0" +version = "4.14.1" description = "Easy-to-use multi-platform LLM chatbot and development framework" readme = "README.md" requires-python = ">=3.10"