diff --git a/astrbot/cli/__init__.py b/astrbot/cli/__init__.py index 601b9bb2b..77df5910b 100644 --- a/astrbot/cli/__init__.py +++ b/astrbot/cli/__init__.py @@ -1 +1 @@ -__version__ = "4.11.1" +__version__ = "4.11.2" diff --git a/astrbot/core/config/default.py b/astrbot/core/config/default.py index 7d5b89334..1d1a85a07 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.11.1" +VERSION = "4.11.2" DB_PATH = os.path.join(get_astrbot_data_path(), "data_v4.db") WEBHOOK_SUPPORTED_PLATFORMS = [ diff --git a/changelogs/v4.11.2.md b/changelogs/v4.11.2.md new file mode 100644 index 000000000..2d0e94aa2 --- /dev/null +++ b/changelogs/v4.11.2.md @@ -0,0 +1,15 @@ +## What's Changed + +### Features + +- feat: supports to display plugin CHANGELOG.md ([#4337](https://github.com/AstrBotDevs/AstrBot/issues/4337)) + +### Fixes + +- fix: conversation was still saved to the context after `stop_event` ([#4345](https://github.com/AstrBotDevs/AstrBot/issues/4345)) +- fix: on_waiting_llm_request hook did not check message validity ([#4349](https://github.com/AstrBotDevs/AstrBot/issues/4349)) +fix(webui): maintain international consistency of the 'repo' button ([#4358](https://github.com/AstrBotDevs/AstrBot/issues/4358)) + +### Improvements + +- plugin marketplace search supports matching display names. ([#4332](https://github.com/AstrBotDevs/AstrBot/issues/4332)) diff --git a/pyproject.toml b/pyproject.toml index 1c4c1b70f..13647fd31 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "AstrBot" -version = "4.11.1" +version = "4.11.2" description = "Easy-to-use multi-platform LLM chatbot and development framework" readme = "README.md" requires-python = ">=3.10"