Release version 2.6.4

This commit is contained in:
Him188 2021-05-05 23:03:05 +08:00
parent 028bfa483c
commit cb2b0f4423
2 changed files with 6 additions and 6 deletions

View File

@ -12,7 +12,7 @@
import org.gradle.api.attributes.Attribute
object Versions {
const val project = "2.7-M1-dev-2"
const val project = "2.6.4"
const val core = project
const val console = project

View File

@ -13,7 +13,7 @@
| 版本类型 | 版本号 |
|:------:|:------------------------------:|
| 稳定 | 2.6.2 |
| 稳定 | 2.6.4 |
| 预览 | - |
| 开发 | [![Version]][Bintray Download] |
@ -38,7 +38,7 @@ plugins {
}
dependencies {
api("net.mamoe", "mirai-core", "2.6.2")
api("net.mamoe", "mirai-core", "2.6.4")
}
```
@ -58,7 +58,7 @@ plugins {
}
dependencies {
implementation 'net.mamoe:mirai-core:2.6.2'
implementation 'net.mamoe:mirai-core:2.6.4'
}
```
@ -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.2"
val miraiVersion = "2.6.4"
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.2</version>
<version>2.6.4</version>
</dependency>
</dependencies>
```