From 1e5f243edbdd67064faa0ddbf8ca814bdedd2cf5 Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Sun, 31 Aug 2025 20:25:05 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=A6=20release:=20v3.5.26?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- astrbot/core/config/default.py | 2 +- changelogs/v3.5.26.md | 9 +++++++++ pyproject.toml | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 changelogs/v3.5.26.md diff --git a/astrbot/core/config/default.py b/astrbot/core/config/default.py index b299cbffb..637d30bcb 100644 --- a/astrbot/core/config/default.py +++ b/astrbot/core/config/default.py @@ -6,7 +6,7 @@ import os from astrbot.core.utils.astrbot_path import get_astrbot_data_path -VERSION = "3.5.25" +VERSION = "3.5.26" DB_PATH = os.path.join(get_astrbot_data_path(), "data_v3.db") # 默认配置 diff --git a/changelogs/v3.5.26.md b/changelogs/v3.5.26.md new file mode 100644 index 000000000..d5301ae92 --- /dev/null +++ b/changelogs/v3.5.26.md @@ -0,0 +1,9 @@ +# What's Changed + +1. 新增:为 FishAudio TTS 添加可选的 reference_id 直接指定功能 ([#2513](https://github.com/AstrBotDevs/AstrBot/issues/2513)) +2. 新增:Gemini 添加对 LLMResponse 的 raw_completion 支持 +3. 新增:支持官方 QQ 接口发送语音 ([#2525](https://github.com/AstrBotDevs/AstrBot/issues/2525)) +4. 新增:调用 deepseek-reasoner 时自动移除 tools ([#2531](https://github.com/AstrBotDevs/AstrBot/issues/2531)) +5. 新增:添加 no_proxy 配置支持以优化代理设置 ([#2564](https://github.com/AstrBotDevs/AstrBot/issues/2564)) +6. 新增:支持升级的同时更新到指定版本的 WebUI +7. 修复: 修复编辑会话名称窗口的圆角和左右边距问题 ([#2583](https://github.com/AstrBotDevs/AstrBot/issues/2583)) diff --git a/pyproject.toml b/pyproject.toml index 276261ff8..693aefe4b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "AstrBot" -version = "3.5.25" +version = "3.5.26" description = "易上手的多平台 LLM 聊天机器人及开发框架" readme = "README.md" requires-python = ">=3.10"