Skip to content

Commit

Permalink
Release version 2.6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Him188 committed May 30, 2021
1 parent 25a4fe1 commit a54aa62
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import org.gradle.api.attributes.Attribute

object Versions {
const val project = "2.6.4"
const val project = "2.6.5"

const val core = project
const val console = project
Expand Down
10 changes: 5 additions & 5 deletions docs/ConfiguringProjects.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

| 版本类型 | 版本号 |
|:------:|:------------------------------:|
| 稳定 | 2.6.4 |
| 稳定 | 2.6.5 |
| 预览 | - |
| 开发 | [![Version]][Bintray Download] |

Expand All @@ -36,7 +36,7 @@ plugins {
}

dependencies {
api("net.mamoe", "mirai-core", "2.6.4")
api("net.mamoe", "mirai-core", "2.6.5")
}
```

Expand All @@ -56,7 +56,7 @@ plugins {
}
dependencies {
api('net.mamoe', 'mirai-core', '2.6.4')
api('net.mamoe', 'mirai-core', '2.6.5')
}
```

Expand All @@ -69,7 +69,7 @@ dependencies {
mirai 在开发时需要 `net.mamoe:mirai-core-api`, 在运行时需要 `net.mamoe:mirai-core`。可以在开发和编译时只依赖 `mirai-core-api`,会减轻对 IDE 的负担。
```kotlin
dependencies {
val miraiVersion = "2.6.4"
val miraiVersion = "2.6.5"
api("net.mamoe", "mirai-core-api", miraiVersion) // 编译代码使用
runtimeOnly("net.mamoe", "mirai-core", miraiVersion) // 运行时使用
}
Expand All @@ -85,7 +85,7 @@ dependencies {
<dependency>
<groupId>net.mamoe</groupId>
<artifactId>mirai-core-jvm</artifactId>
<version>2.6.4</version>
<version>2.6.5</version>
</dependency>
</dependencies>
```
Expand Down

0 comments on commit a54aa62

Please sign in to comment.