From eaee98d4b8dff1b73f372d34347b95c6c425a8e4 Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Wed, 24 Dec 2025 21:55:05 +0800 Subject: [PATCH] chore: bump version to 4.10.2 --- astrbot/cli/__init__.py | 2 +- astrbot/core/config/default.py | 2 +- changelogs/v4.10.2.md | 9 +++++++++ pyproject.toml | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) create mode 100644 changelogs/v4.10.2.md diff --git a/astrbot/cli/__init__.py b/astrbot/cli/__init__.py index 4e499ea83..cf44e2fd5 100644 --- a/astrbot/cli/__init__.py +++ b/astrbot/cli/__init__.py @@ -1 +1 @@ -__version__ = "4.10.1" +__version__ = "4.10.2" diff --git a/astrbot/core/config/default.py b/astrbot/core/config/default.py index 319b2a0cb..b45917026 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.10.1" +VERSION = "4.10.2" DB_PATH = os.path.join(get_astrbot_data_path(), "data_v4.db") WEBHOOK_SUPPORTED_PLATFORMS = [ diff --git a/changelogs/v4.10.2.md b/changelogs/v4.10.2.md new file mode 100644 index 000000000..acc9f9bae --- /dev/null +++ b/changelogs/v4.10.2.md @@ -0,0 +1,9 @@ +## What's Changed + +### 修复 + +1. ‼️‼️ 修复了由 `psutil` 新版本导致的启动时报错的问题。 + +### 新增 + +1. 插件指令管理支持管理别名。 \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 8f134f215..32f28ac32 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "AstrBot" -version = "4.10.1" +version = "4.10.2" description = "Easy-to-use multi-platform LLM chatbot and development framework" readme = "README.md" requires-python = ">=3.10"