mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-12-01 01:25:07 +08:00
Bump version to v1.4.0
This commit is contained in:
parent
76f1dfc2a5
commit
5f55e30381
@ -4,6 +4,13 @@ sidebar: auto
|
|||||||
|
|
||||||
# 更新日志
|
# 更新日志
|
||||||
|
|
||||||
|
## v1.4.0
|
||||||
|
|
||||||
|
- 提升 aiocqhttp 依赖版本至 1.2,提升最低 Python 版本至 3.7
|
||||||
|
- 修复 `command.group` 的 stub 文件问题
|
||||||
|
- 修复 `helpers.render_expression` 没有转义位置参数的 bug
|
||||||
|
- 修复 `argparse.ArgumentParser` 在没有必填参数时不能正确使用的 bug
|
||||||
|
|
||||||
## v1.3.1
|
## v1.3.1
|
||||||
|
|
||||||
- `on_natural_language` 装饰器的 `keywords` 参数现可直接传字符串
|
- `on_natural_language` 装饰器的 `keywords` 参数现可直接传字符串
|
||||||
|
8
setup.py
8
setup.py
@ -7,7 +7,7 @@ packages = find_packages(include=('nonebot', 'nonebot.*'))
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='nonebot',
|
name='nonebot',
|
||||||
version='1.3.1',
|
version='1.4.0',
|
||||||
url='https://github.com/richardchien/nonebot',
|
url='https://github.com/richardchien/nonebot',
|
||||||
license='MIT License',
|
license='MIT License',
|
||||||
author='Richard Chien',
|
author='Richard Chien',
|
||||||
@ -19,11 +19,11 @@ setup(
|
|||||||
package_data={
|
package_data={
|
||||||
'': ['*.pyi'],
|
'': ['*.pyi'],
|
||||||
},
|
},
|
||||||
install_requires=['aiocqhttp>=0.6.8', 'aiocache>=0.10'],
|
install_requires=['aiocqhttp>=1.2,<1.3', 'aiocache>=0.10,<1.0'],
|
||||||
extras_require={
|
extras_require={
|
||||||
'scheduler': ['apscheduler>=1.2'],
|
'scheduler': ['apscheduler'],
|
||||||
},
|
},
|
||||||
python_requires='>=3.6.1',
|
python_requires='>=3.7',
|
||||||
platforms='any',
|
platforms='any',
|
||||||
classifiers=[
|
classifiers=[
|
||||||
'Development Status :: 5 - Production/Stable',
|
'Development Status :: 5 - Production/Stable',
|
||||||
|
Loading…
Reference in New Issue
Block a user