From dd5a02e8ef7958806b84797e1733d51259815dde Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Sun, 5 Oct 2025 01:01:13 +0800 Subject: [PATCH] chore: bump version to 4.3.2 --- astrbot/core/config/default.py | 2 +- changelogs/v4.3.2.md | 7 +++++++ pyproject.toml | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 changelogs/v4.3.2.md diff --git a/astrbot/core/config/default.py b/astrbot/core/config/default.py index 0e464362e..82a4571a0 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 = "4.3.1" +VERSION = "4.3.2" DB_PATH = os.path.join(get_astrbot_data_path(), "data_v4.db") # 默认配置 diff --git a/changelogs/v4.3.2.md b/changelogs/v4.3.2.md new file mode 100644 index 000000000..10d9f37f2 --- /dev/null +++ b/changelogs/v4.3.2.md @@ -0,0 +1,7 @@ +# What's Changed + +1. fix: 修复 /reset 指令没有清除群聊上下文感知数据的问题 ([#2954](https://github.com/AstrBotDevs/AstrBot/issues/2954)) +2. fix: 修复自带的 WebSearch 插件可能在部分场景下无法使用的问题 +3. fix: 发送阶段强行将 Plain 为空的消息段移除 +4. fix: on_tool_end无法获得工具返回的结果 ([#2956](https://github.com/AstrBotDevs/AstrBot/issues/2956)) +5. feat: 为插件市场的搜索增加拼音与首字母搜索功能 ([#2936](https://github.com/AstrBotDevs/AstrBot/issues/2936)) diff --git a/pyproject.toml b/pyproject.toml index 3d5eb3d6c..4df2d95b0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "AstrBot" -version = "4.3.1" +version = "4.3.2" description = "易上手的多平台 LLM 聊天机器人及开发框架" readme = "README.md" requires-python = ">=3.10"