diff --git a/CHANGELOG.md b/CHANGELOG.md index feaa3bb0..b4ac894b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # 更新日志 +## Alconna 1.8.18 + +### 改进 + +- `shortcut` 的 wrapper 现在需要 `context` 参数 +- `command_manager.update` 现在会清除先前的命令缓存 + +### 修复 + +- 修复传入参数为其他`逻辑值为 False`时参数无法识别的问题 + ## Alconna 1.8.17 ### 修复 diff --git a/src/arclet/alconna/__init__.py b/src/arclet/alconna/__init__.py index d2c14bb2..ae822c90 100644 --- a/src/arclet/alconna/__init__.py +++ b/src/arclet/alconna/__init__.py @@ -51,7 +51,7 @@ from .typing import UnpackVar as UnpackVar from .typing import Up as Up -__version__ = "1.8.17" +__version__ = "1.8.18" # backward compatibility AnyOne = ANY