Skip to content

Commit

Permalink
fix(nonebot_plugin_mccheck): 修正版本号不匹配问题
Browse files Browse the repository at this point in the history
解决nonebot_plugin_mccheck模块中的版本号不一致问题。将__init__.py中的版本号从0.1.14更改为0.1.13,与pyproject.toml中的版本号保持一致。
  • Loading branch information
molanp committed Aug 22, 2024
1 parent 8db3ca3 commit b7965f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nonebot_plugin_mccheck/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import sys
import base64

__version__ = "0.1.14"
__version__ = "0.1.13"

__plugin_meta__ = PluginMetadata(
name="Minecraft查服",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "nonebot-plugin-mccheck"
version = "0.1.14"
version = "0.1.13"
description = "Minecraft服务器状态专业查询,支持IPv6"
readme = "README.md"
requires-python = ">=3.9"
Expand Down

0 comments on commit b7965f2

Please sign in to comment.