Skip to content

Commit e2f928a

Browse files
committed
chore: bump version to 4.9.2
1 parent b8e4068 commit e2f928a

File tree

5 files changed

+21
-17
lines changed

5 files changed

+21
-17
lines changed

astrbot/cli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "4.9.1"
1+
__version__ = "4.9.2"

astrbot/core/config/default.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
from astrbot.core.utils.astrbot_path import get_astrbot_data_path
66

7-
VERSION = "4.9.1"
7+
VERSION = "4.9.2"
88
DB_PATH = os.path.join(get_astrbot_data_path(), "data_v4.db")
99

1010
WEBHOOK_SUPPORTED_PLATFORMS = [

changelogs/v4.9.1.md

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,3 @@
11
## What's Changed
22

3-
### 修复
4-
5-
- 企业自部署飞书(自定义 domain)可以接收消息但无法发送消息的问题。
6-
- 安装插件 Dialog 的深色样式问题。
7-
8-
### 优化
9-
10-
- 避免某些插件在流式响应结束后重复发送消息的问题。
11-
12-
### 新增
13-
14-
- 支持在对话管理批量导出对话轨迹数据为 `jsonl` 格式文件。入口:WebUI -> 对话管理 -> 批量选中 -> 导出。
15-
- 支持对 TTS(文本转语音)设置概率触发。
16-
- (插件开发)支持在 schema 中对 float 和 int 类型设置 `slider` 滑块控件。例如 `slider: {min: 0, max: 1, step: 0.1}`
3+
-

changelogs/v4.9.2.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
## What's Changed
2+
3+
### 修复
4+
5+
- 企业自部署飞书(自定义 domain)可以接收消息但无法发送消息的问题。
6+
- 安装插件 Dialog 的深色样式问题。
7+
8+
### 优化
9+
10+
- 避免某些插件在流式响应结束后重d复发送消息的问题。
11+
12+
### 新增
13+
14+
- 支持在对话管理批量导出对话轨迹数据为 `jsonl` 格式文件。入口:WebUI -> 对话管理 -> 批量选中 -> 导出。
15+
- 支持对 TTS(文本转语音)设置概率触发。
16+
- (插件开发)支持在 schema 中对 float 和 int 类型设置 `slider` 滑块控件。例如 `slider: {min: 0, max: 1, step: 0.1}`
17+
- (插件开发)支持 key-value 存储功能。例如使用 `await self.put_kv_data("key", value)`, `await self.get_kv_data("key", default_value)``await self.delete_kv_data("key")`

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "AstrBot"
3-
version = "4.9.1"
3+
version = "4.9.2"
44
description = "Easy-to-use multi-platform LLM chatbot and development framework"
55
readme = "README.md"
66
requires-python = ">=3.10"

0 commit comments

Comments
 (0)