From d609f23b7136e30adf38929bac6402a581148ffc Mon Sep 17 00:00:00 2001
From: Soulter <905617992@qq.com>
Date: Sun, 17 May 2026 15:01:59 +0800
Subject: [PATCH] chore: bump version to 4.25.1
---
astrbot/cli/__init__.py | 2 +-
astrbot/core/config/default.py | 2 +-
changelogs/v4.25.1.md | 26 ++++++++++++++++++++++++++
pyproject.toml | 2 +-
4 files changed, 29 insertions(+), 3 deletions(-)
create mode 100644 changelogs/v4.25.1.md
diff --git a/astrbot/cli/__init__.py b/astrbot/cli/__init__.py
index 8900bf5ca..bf4d023cf 100644
--- a/astrbot/cli/__init__.py
+++ b/astrbot/cli/__init__.py
@@ -1 +1 @@
-__version__ = "4.25.0"
+__version__ = "4.25.1"
diff --git a/astrbot/core/config/default.py b/astrbot/core/config/default.py
index 7f7140a9c..ce79559bd 100644
--- a/astrbot/core/config/default.py
+++ b/astrbot/core/config/default.py
@@ -5,7 +5,7 @@ import os
from astrbot.core.computer.booters.cua_defaults import CUA_DEFAULT_CONFIG
from astrbot.core.utils.astrbot_path import get_astrbot_data_path
-VERSION = "4.25.0"
+VERSION = "4.25.1"
DB_PATH = os.path.join(get_astrbot_data_path(), "data_v4.db")
PERSONAL_WECHAT_CONFIG_METADATA = {
"weixin_oc_base_url": {
diff --git a/changelogs/v4.25.1.md b/changelogs/v4.25.1.md
new file mode 100644
index 000000000..ed617c871
--- /dev/null
+++ b/changelogs/v4.25.1.md
@@ -0,0 +1,26 @@
+- [更新日志(简体中文)](#chinese)
+- [Changelog(English)](#english)
+
+
+
+## What's Changed
+
+### 优化
+
+- 个人微信和钉钉扫码创建成功后,平台配置 ID 会自动追加随机 4 位小写字母后缀,例如 `_abcd`,降低多个扫码创建配置之间的 ID 冲突概率。
+
+### 修复
+
+- 修复 WebUI 全局字体栈未完整覆盖西里尔文字场景的问题,改善俄文等多语言文本显示效果。([#8205](https://github.com/AstrBotDevs/AstrBot/pull/8205))
+
+
+
+## What's Changed (EN)
+
+### Improvements
+
+- Personal WeChat and DingTalk QR setup now append a random four-letter lowercase suffix to the generated platform config ID, such as `_abcd`, reducing ID conflicts across multiple scan-created configs.
+
+### Bug Fixes
+
+- Fixed the WebUI global font-family stack so Cyrillic text and other multilingual content render more consistently. ([#8205](https://github.com/AstrBotDevs/AstrBot/pull/8205))
diff --git a/pyproject.toml b/pyproject.toml
index 22a5904a1..c3ff88b74 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[project]
name = "AstrBot"
-version = "4.25.0"
+version = "4.25.1"
description = "Easy-to-use multi-platform LLM chatbot and development framework"
readme = "README.md"
license = { text = "AGPL-3.0-or-later" }