From 3877fbfc822d88e0f73b57a0713ef7901f8ed56c Mon Sep 17 00:00:00 2001 From: molanp <104612722+molanp@users.noreply.github.com> Date: Sat, 14 Dec 2024 02:35:00 +0800 Subject: [PATCH] =?UTF-8?q?build:=20=E6=9B=B4=E6=96=B0=E7=89=88=E6=9C=AC?= =?UTF-8?q?=E5=8F=B7=E8=87=B3=200.1.38?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在 configs.py 中更新 VERSION 常量 - 在 default.html 中修改插件名称显示 - 更新 pyproject.toml 中的版本号 --- nonebot_plugin_mccheck/configs.py | 2 +- nonebot_plugin_mccheck/templates/default.html | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/nonebot_plugin_mccheck/configs.py b/nonebot_plugin_mccheck/configs.py index 772e722..7355026 100644 --- a/nonebot_plugin_mccheck/configs.py +++ b/nonebot_plugin_mccheck/configs.py @@ -9,4 +9,4 @@ def readInfo(file: str) -> dict: message_type = plugin_config.type lang = plugin_config.language lang_data = readInfo("language.json") -VERSION = "0.1.37" \ No newline at end of file +VERSION = "0.1.38" \ No newline at end of file diff --git a/nonebot_plugin_mccheck/templates/default.html b/nonebot_plugin_mccheck/templates/default.html index 3ca9aff..e8cae85 100644 --- a/nonebot_plugin_mccheck/templates/default.html +++ b/nonebot_plugin_mccheck/templates/default.html @@ -45,7 +45,7 @@ {% endif %}
- zhenxun_plugin_mccheck v{{ data["VERSION"] }} by molanp. + nonebot_plugin_mccheck v{{ data["VERSION"] }} by molanp.
diff --git a/pyproject.toml b/pyproject.toml index 50b5899..d617ff8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "nonebot-plugin-mccheck" -version = "0.1.37" +version = "0.1.38" description = "Minecraft服务器状态查询的nonebot插件,支持IPv6/Minecraft server status query plugin for nonebot, IPv6 supported" readme = "README.md" requires-python = ">=3.9"