From 510290fe0e63e09674a6f5f3f531c2fad4e47bd3 Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Wed, 31 Dec 2025 17:58:28 +0800 Subject: [PATCH] chore: bump version to 4.10.5 --- astrbot/cli/__init__.py | 2 +- astrbot/core/config/default.py | 2 +- changelogs/v4.10.5.md | 5 +++++ pyproject.toml | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) create mode 100644 changelogs/v4.10.5.md diff --git a/astrbot/cli/__init__.py b/astrbot/cli/__init__.py index c7f0270f6..932f9cd75 100644 --- a/astrbot/cli/__init__.py +++ b/astrbot/cli/__init__.py @@ -1 +1 @@ -__version__ = "4.10.4" +__version__ = "4.10.5" diff --git a/astrbot/core/config/default.py b/astrbot/core/config/default.py index bb523e411..78da1d959 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.4" +VERSION = "4.10.5" DB_PATH = os.path.join(get_astrbot_data_path(), "data_v4.db") WEBHOOK_SUPPORTED_PLATFORMS = [ diff --git a/changelogs/v4.10.5.md b/changelogs/v4.10.5.md new file mode 100644 index 000000000..e49df1e46 --- /dev/null +++ b/changelogs/v4.10.5.md @@ -0,0 +1,5 @@ +## What's Changed + +hotfix of v4.10.4 + +fix: 部分配置项的输入框不显示,如飞书机器人配置的部分配置项。(#4268) \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 5f66a3959..236f1c16a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "AstrBot" -version = "4.10.4" +version = "4.10.5" description = "Easy-to-use multi-platform LLM chatbot and development framework" readme = "README.md" requires-python = ">=3.10"