From e7e97730af6bdf69c7a25b97996e083aaf428ee6 Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Sat, 13 Dec 2025 18:49:07 +0800 Subject: [PATCH] chore: bump version to 4.9.0 --- astrbot/cli/__init__.py | 2 +- astrbot/core/config/default.py | 2 +- changelogs/v4.9.0.md | 19 +++++++++++++++++++ pyproject.toml | 2 +- 4 files changed, 22 insertions(+), 3 deletions(-) create mode 100644 changelogs/v4.9.0.md diff --git a/astrbot/cli/__init__.py b/astrbot/cli/__init__.py index ea674c5c5..454a2edae 100644 --- a/astrbot/cli/__init__.py +++ b/astrbot/cli/__init__.py @@ -1 +1 @@ -__version__ = "4.8.0" +__version__ = "4.9.0" diff --git a/astrbot/core/config/default.py b/astrbot/core/config/default.py index daa2c4fac..7f42aa88b 100644 --- a/astrbot/core/config/default.py +++ b/astrbot/core/config/default.py @@ -4,7 +4,7 @@ import os from astrbot.core.utils.astrbot_path import get_astrbot_data_path -VERSION = "4.8.0" +VERSION = "4.9.0" DB_PATH = os.path.join(get_astrbot_data_path(), "data_v4.db") WEBHOOK_SUPPORTED_PLATFORMS = [ diff --git a/changelogs/v4.9.0.md b/changelogs/v4.9.0.md new file mode 100644 index 000000000..aeccdb006 --- /dev/null +++ b/changelogs/v4.9.0.md @@ -0,0 +1,19 @@ +## What's Changed + +### 新增 + +- 支持自定义插件源。 +- 支持飞书(Lark)的 Webhook 模式(将事件推送至开发者服务器)。 +- 支持 “禁用自带指令” 快捷配置项,启用后将禁用所有 AstrBot 自带指令。入口: WebUI -> 配置文件 -> 平台配置。 + +### 优化 + +- 从 WebUI 移除了开发版本渠道。 +- 当试图测试"Agent Runner"时,提示前往配置文件页测试。 +- WebUI 列表项支持批量粘贴、回车创建项目。 + +### 修复 + +- Gemini API 部分调用失败的问题。 +- WebUI 插件安装加载 Dialog 关闭按钮在手机端下显示异常的问题。 +- 部分情况下,WebUI 日志显示不全的问题。 \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index a260f55d2..6badf6d19 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "AstrBot" -version = "4.8.0" +version = "4.9.0" description = "Easy-to-use multi-platform LLM chatbot and development framework" readme = "README.md" requires-python = ">=3.10"