From 0500ee8e2b259504ca941d2cb30f2a380345fef2 Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Thu, 29 Jan 2026 00:21:58 +0800 Subject: [PATCH] chore: bump version to 4.13.0 --- astrbot/cli/__init__.py | 2 +- astrbot/core/config/default.py | 2 +- changelogs/v4.13.0.md | 18 ++++++++++++++++++ pyproject.toml | 2 +- 4 files changed, 21 insertions(+), 3 deletions(-) create mode 100644 changelogs/v4.13.0.md diff --git a/astrbot/cli/__init__.py b/astrbot/cli/__init__.py index b92b622d2..5b886240e 100644 --- a/astrbot/cli/__init__.py +++ b/astrbot/cli/__init__.py @@ -1 +1 @@ -__version__ = "4.12.4" +__version__ = "4.13.0" diff --git a/astrbot/core/config/default.py b/astrbot/core/config/default.py index ba8287255..7f217b1f8 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.12.4" +VERSION = "4.13.0" DB_PATH = os.path.join(get_astrbot_data_path(), "data_v4.db") WEBHOOK_SUPPORTED_PLATFORMS = [ diff --git a/changelogs/v4.13.0.md b/changelogs/v4.13.0.md new file mode 100644 index 000000000..80144bd97 --- /dev/null +++ b/changelogs/v4.13.0.md @@ -0,0 +1,18 @@ +## 更新内容 + +### 新功能 + +- 支持 Anthropic Skills; +- 支持新的 Tool Schema 模式:Skill-like。通过两阶段调用来减少 Tool 过多的情况下,占用过多上下文的问题。 +- 支持通过环境变量配置提供商 API Key。([#4696](https://github.com/AstrBotDevs/AstrBot/issues/4696)) +- 支持插件的上传文件功能配置项类型 `file` ([#4539](https://github.com/AstrBotDevs/AstrBot/issues/4539)) + +### 修复 + +- Gemini API 部分情况下工具无限循环调用 ([#4686](https://github.com/AstrBotDevs/AstrBot/issues/4686)) +- 修复 WebUI GitHub 代理选择器问题及卸载插件后出现的错误 ([#4724](https://github.com/AstrBotDevs/AstrBot/issues/4724)) + +### 优化 + +- 默认不在终端显示 WebUI API 访问日志 ([#4661](https://github.com/AstrBotDevs/AstrBot/issues/4661)) +- 增加插件管理页面“更新所有插件”按钮的确认对话框,防止误点击 ([#4658](https://github.com/AstrBotDevs/AstrBot/issues/4658)) diff --git a/pyproject.toml b/pyproject.toml index 0dd6a7b9a..361f00c09 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "AstrBot" -version = "4.12.4" +version = "4.13.0" description = "Easy-to-use multi-platform LLM chatbot and development framework" readme = "README.md" requires-python = ">=3.10"