From d2b9997620ac23e83209a69ce6d0ff079a7ea92f Mon Sep 17 00:00:00 2001 From: advent259141 <2968474907@qq.com> Date: Wed, 4 Feb 2026 17:42:41 +0800 Subject: [PATCH] chore: bump version to 4.14.2 --- astrbot/cli/__init__.py | 2 +- astrbot/core/config/default.py | 2 +- changelogs/v4.14.2.md | 23 +++++++++++++++++++++++ pyproject.toml | 2 +- 4 files changed, 26 insertions(+), 3 deletions(-) create mode 100644 changelogs/v4.14.2.md diff --git a/astrbot/cli/__init__.py b/astrbot/cli/__init__.py index 958d33c76..1a667d3f8 100644 --- a/astrbot/cli/__init__.py +++ b/astrbot/cli/__init__.py @@ -1 +1 @@ -__version__ = "4.14.1" +__version__ = "4.14.2" diff --git a/astrbot/core/config/default.py b/astrbot/core/config/default.py index 12056a04e..933edf2b3 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.1" +VERSION = "4.14.2" DB_PATH = os.path.join(get_astrbot_data_path(), "data_v4.db") WEBHOOK_SUPPORTED_PLATFORMS = [ diff --git a/changelogs/v4.14.2.md b/changelogs/v4.14.2.md new file mode 100644 index 000000000..8438314e6 --- /dev/null +++ b/changelogs/v4.14.2.md @@ -0,0 +1,23 @@ +## What's Changed + +### 新增 +- 控制台页面新增调试提示和本地化文件 ([#4852](https://github.com/AstrBotDevs/AstrBot/pull/4852)) + +### 修复 +- 修复插件热重载时平台适配器未清理导致注册冲突的问题 ([#4859](https://github.com/AstrBotDevs/AstrBot/pull/4859)) + +### 其他 +- 更新 ruff 版本至 0.15.0 +- 新增 robots.txt ([#4847](https://github.com/AstrBotDevs/AstrBot/pull/4847)) + +## What's Changed (EN) + +### New Features +- Add debug hint to console page and localization files ([#4852](https://github.com/AstrBotDevs/AstrBot/pull/4852)) + +### Bug Fixes +- Fix platform adapter not being cleaned up during plugin hot reload, causing registration conflicts ([#4859](https://github.com/AstrBotDevs/AstrBot/pull/4859)) + +### Others +- Update ruff version to 0.15.0 +- Add robots.txt ([#4847](https://github.com/AstrBotDevs/AstrBot/pull/4847)) diff --git a/pyproject.toml b/pyproject.toml index 2ce53ad39..7920b3f2e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "AstrBot" -version = "4.14.1" +version = "4.14.2" description = "Easy-to-use multi-platform LLM chatbot and development framework" readme = "README.md" requires-python = ">=3.10"