From a4be369e433968978ca220796660f5e8862c26f9 Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Tue, 17 Feb 2026 02:30:13 +0800 Subject: [PATCH] chore: bump version to 4.17.1 --- astrbot/cli/__init__.py | 2 +- astrbot/core/config/default.py | 2 +- changelogs/v4.17.2.md | 8 ++++++++ desktop/package.json | 2 +- pyproject.toml | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) create mode 100644 changelogs/v4.17.2.md diff --git a/astrbot/cli/__init__.py b/astrbot/cli/__init__.py index 4afe96e76..4ce847728 100644 --- a/astrbot/cli/__init__.py +++ b/astrbot/cli/__init__.py @@ -1 +1 @@ -__version__ = "4.17.1" +__version__ = "4.17.2" diff --git a/astrbot/core/config/default.py b/astrbot/core/config/default.py index a58ec2c7b..de5ae49cd 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.17.1" +VERSION = "4.17.2" DB_PATH = os.path.join(get_astrbot_data_path(), "data_v4.db") WEBHOOK_SUPPORTED_PLATFORMS = [ diff --git a/changelogs/v4.17.2.md b/changelogs/v4.17.2.md new file mode 100644 index 000000000..e65972de3 --- /dev/null +++ b/changelogs/v4.17.2.md @@ -0,0 +1,8 @@ +## What's Changed + +hotfix of 4.17.0 + +- 修复:MCP 服务器的 Tools 没有被正确添加到上下文中。 +- 修复:Electron 桌面应用部署时,系统自带插件未被正确加载的问题。 +- fix: Tools from MCP server were not properly added to context. +- fix: built-in plugins were not properly loaded in Electron desktop application deployment. diff --git a/desktop/package.json b/desktop/package.json index cea51d0da..5335f4143 100644 --- a/desktop/package.json +++ b/desktop/package.json @@ -1,6 +1,6 @@ { "name": "astrbot-desktop", - "version": "4.17.1", + "version": "4.17.2", "description": "AstrBot desktop wrapper", "private": true, "main": "main.js", diff --git a/pyproject.toml b/pyproject.toml index 626940e45..0b73dcb2e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "AstrBot" -version = "4.17.1" +version = "4.17.2" description = "Easy-to-use multi-platform LLM chatbot and development framework" readme = "README.md" requires-python = ">=3.12"