diff --git a/aiocqhttp/message.py b/aiocqhttp/message.py index f2fee54..07e08be 100644 --- a/aiocqhttp/message.py +++ b/aiocqhttp/message.py @@ -78,7 +78,7 @@ def __init__(self, - ``type_``: 当没有传入 ``d`` 参数或 ``d`` 参数无法识别时,此参数必填,对应消息段的 ``type`` 字段 - ``data``: 对应消息段的 ``data`` 字段 - 当没有正确传入类型参数时,抛出 ``ValurError``。 + 当没有正确传入类型参数时,抛出 ``ValueError``。 """ super().__init__() if isinstance(d, dict) and d.get('type'): diff --git a/docs/changelog.md b/docs/changelog.md index 06200e0..9eff2e8 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,6 +1,6 @@ # 更新日志 -## master +## v1.4.2 - 修复从 `str` 构造 `Message` 时无法正确去转义参数 [#57](https://github.com/nonebot/aiocqhttp/issues/57) - 修复无法构造空 `Message` 的问题 diff --git a/setup.py b/setup.py index abf40f2..a0e6e7f 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='aiocqhttp', - version='1.4.1', + version='1.4.2', url='https://github.com/nonebot/aiocqhttp', license='MIT License', author='Richard Chien',