From b2d6baff4a8afb73769f55c5c650039440426a7a Mon Sep 17 00:00:00 2001 From: Him188 Date: Wed, 25 Aug 2021 14:11:51 +0800 Subject: [PATCH] Update docs for logging adapters --- logging/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/logging/README.md b/logging/README.md index 77450e875..ee3830396 100644 --- a/logging/README.md +++ b/logging/README.md @@ -33,8 +33,8 @@ Mirai 日志转接模块,用于使用各大主流日志库接管 Mirai 日志 ```kotlin dependencies { - api("net.mamoe", "mirai-core", "2.6.7") - api("net.mamoe", "mirai-logging-log4j2", "2.6.7") // 在依赖 mirai-core 或 mirai-core-api 的前提下额外添加日志转接模块. 版本号相同 + api("net.mamoe", "mirai-core", "2.7.0") + api("net.mamoe", "mirai-logging-log4j2", "2.7.0") // 在依赖 mirai-core 或 mirai-core-api 的前提下额外添加日志转接模块. 版本号相同 } ``` @@ -44,8 +44,8 @@ dependencies { ```groovy dependencies { - api 'net.mamoe:mirai-core:2.6.7' - api 'net.mamoe:mirai-logging-log4j2:2.6.7' // 在依赖 mirai-core 或 mirai-core-api 的前提下额外添加日志转接模块. 版本号相同 + api 'net.mamoe:mirai-core:2.7.0' + api 'net.mamoe:mirai-logging-log4j2:2.7.0' // 在依赖 mirai-core 或 mirai-core-api 的前提下额外添加日志转接模块. 版本号相同 } ``` @@ -58,14 +58,14 @@ dependencies { net.mamoe mirai-core-jvm - 2.6.7 + 2.7.0 net.mamoe mirai-logging-log4j2 - 2.6.7 + 2.7.0 ```