Release version 2.6.2

This commit is contained in:
Him188 2021-04-21 16:43:59 +08:00
parent 5dcccd1402
commit 1088b12621

View File

@ -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 {
<dependency>
<groupId>net.mamoe</groupId>
<artifactId>mirai-core-jvm</artifactId>
<version>2.6.1</version>
<version>2.6.2</version>
</dependency>
</dependencies>
```