diff --git a/README.md b/README.md index 488cd57..36c1964 100644 --- a/README.md +++ b/README.md @@ -80,9 +80,15 @@ async def handle(user_info: UserInfo = BotUserInfo()): # 获取Bot用户信息 ### 支持的 adapter -| OneBot v11 | OneBot v12 | Console | Kaiheila | QQ Guild | Telegram | Feishu | -| :--------: | :--------: | :-----: | :------: | :------: | :------: | :----: | -| ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | +- [x] OneBot v11 +- [x] OneBot v12 +- [x] Console +- [x] Kaiheila +- [x] QQ Guild +- [x] Telegram +- [x] Feishu +- [x] RedProtocol +- [x] Discord ### 鸣谢 diff --git a/nonebot_plugin_userinfo/__init__.py b/nonebot_plugin_userinfo/__init__.py index 257c82b..957eb4e 100644 --- a/nonebot_plugin_userinfo/__init__.py +++ b/nonebot_plugin_userinfo/__init__.py @@ -19,5 +19,7 @@ "~qqguild", "~telegram", "~feishu", + "~red", + "~discord", }, ) diff --git a/pyproject.toml b/pyproject.toml index 94004e3..9e91eaa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "nonebot_plugin_userinfo" -version = "0.1.0" +version = "0.1.1" description = "Nonebot2 用户信息获取插件" authors = ["meetwq "] license = "MIT"