mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-27 18:45:05 +08:00
Bump version to 0.3.2
This commit is contained in:
parent
46fc925cf4
commit
8b1979bf25
@ -1,5 +1,11 @@
|
|||||||
# 更新日志
|
# 更新日志
|
||||||
|
|
||||||
|
## v0.3.2
|
||||||
|
|
||||||
|
- `none.message` 模块现已导入所有 `aiocqhttp.message` 中的内容,因此不必再从后者导入 `Message`、`escape` 等类和函数
|
||||||
|
- 命令的运行加入了超时机制,可通过 `SESSION_RUN_TIMEOUT` 配置,类型为 `datetime.timedelta`,默认为 `None` 表示永不超时
|
||||||
|
- `on_command` 装饰器新增 `privileged` 参数,可将命令设置为特权命令,特权命令即使在已存在其它 CommandSession 的情况下也会运行,但它不会覆盖当前 CommandSession
|
||||||
|
|
||||||
## v0.3.1
|
## v0.3.1
|
||||||
|
|
||||||
- 调整计划任务的启动时间,修复创建任务后无法立即获取下次运行时间的 bug
|
- 调整计划任务的启动时间,修复创建任务后无法立即获取下次运行时间的 bug
|
||||||
|
2
setup.py
2
setup.py
@ -5,7 +5,7 @@ with open('README.md', 'r', encoding='utf-8') as f:
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='none-bot',
|
name='none-bot',
|
||||||
version='0.3.1',
|
version='0.3.2',
|
||||||
packages=find_packages(include=('none', 'none.*')),
|
packages=find_packages(include=('none', 'none.*')),
|
||||||
url='https://github.com/richardchien/none-bot',
|
url='https://github.com/richardchien/none-bot',
|
||||||
license='MIT License',
|
license='MIT License',
|
||||||
|
Loading…
Reference in New Issue
Block a user