diff --git a/docs/changelog.md b/docs/changelog.md index 6d2b0bd2..949ba532 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -4,6 +4,12 @@ sidebar: auto # 更新日志 +## v1.2.3 + +- 修复 `nonebot.scheduler` 过早启动导致使用 Hypercorn 部署时计划任务无法运行的问题 + +同时使用计划任务功能和 Hypercorn 部署的用户请务必升级到此版本! + ## v1.2.2 - 修复 `nonebot.natual_language.IntentCommand` 类 `current_arg` 参数默认为 `None` 导致的 bug diff --git a/setup.py b/setup.py index 0dd56ab4..38f270d7 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ stub_files = list(filter(lambda x: x.endswith('.pyi'), findall('nonebot'))) setup( name='nonebot', - version='1.2.2', + version='1.2.3', url='https://github.com/richardchien/nonebot', license='MIT License', author='Richard Chien',