diff --git a/docs/ConfiguringProjects.md b/docs/ConfiguringProjects.md index 9110df84a..168a068d7 100644 --- a/docs/ConfiguringProjects.md +++ b/docs/ConfiguringProjects.md @@ -13,7 +13,7 @@ | 版本类型 | 版本号 | |:------:|:------------------------------:| -| 稳定 | 2.6.1 | +| 稳定 | 2.6.2 | | 预览 | - | | 开发 | [![Version]][Bintray Download] | @@ -38,7 +38,7 @@ plugins { } dependencies { - api("net.mamoe", "mirai-core", "2.6.1") + api("net.mamoe", "mirai-core", "2.6.2") } ``` @@ -58,7 +58,7 @@ plugins { } dependencies { - api('net.mamoe', 'mirai-core', '2.6.1') + api('net.mamoe', 'mirai-core', '2.6.2') } ``` @@ -71,7 +71,7 @@ dependencies { mirai 在开发时需要 `net.mamoe:mirai-core-api`, 在运行时需要 `net.mamoe:mirai-core`。可以在开发和编译时只依赖 `mirai-core-api`,会减轻对 IDE 的负担。 ```kotlin dependencies { - val miraiVersion = "2.6.1" + val miraiVersion = "2.6.2" api("net.mamoe", "mirai-core-api", miraiVersion) // 编译代码使用 runtimeOnly("net.mamoe", "mirai-core", miraiVersion) // 运行时使用 } @@ -87,7 +87,7 @@ dependencies { net.mamoe mirai-core-jvm - 2.6.1 + 2.6.2 ```