Bump version to 0.4.3

This commit is contained in:
Richard Chien 2018-12-17 17:28:44 +08:00
parent ca16f620c4
commit 3f66c14241
3 changed files with 4 additions and 3 deletions

View File

@ -1340,7 +1340,7 @@ sidebar: auto
## `none.natural_language` 模块
### _decorator_ `on_natural_language(keywords=None, *, permission=EVERYBODY, only_to_me=True, only_short_message=True)`
### _decorator_ `on_natural_language(keywords=None, *, permission=EVERYBODY, only_to_me=True, only_short_message=True, allow_empty_message=False)`
- **说明:**
@ -1352,6 +1352,7 @@ sidebar: auto
- `permission: int`: 自然语言处理器所需要的权限,不满足权限的用户将无法触发该处理器
- `only_to_me: bool`: 是否只响应确定是在和「我」(机器人)说话的消息
- `only_short_message: bool`: 是否只响应短消息
- `allow_empty_message: bool`: 是否响应内容为空的消息(只有@或机器人昵称)
- **要求:**

View File

@ -4,7 +4,7 @@ sidebar: auto
# 更新日志
## next
## v0.4.3
- 自然语言处理器支持响应只有机器人昵称而没有实际内容的消息,通过 `on_natural_language``allow_empty_message` 参数开启(默认关闭)

View File

@ -5,7 +5,7 @@ with open('README.md', 'r', encoding='utf-8') as f:
setup(
name='none-bot',
version='0.4.2',
version='0.4.3',
packages=find_packages(include=('none', 'none.*')),
url='https://github.com/richardchien/none-bot',
license='MIT License',