Skip to content

Commit

Permalink
Release version 2.6.6
Browse files Browse the repository at this point in the history
Him188 committed Jun 10, 2021
1 parent e611269 commit d092374
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
@@ -12,7 +12,7 @@
import org.gradle.api.attributes.Attribute

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

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

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

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

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

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

@@ -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.5"
val miraiVersion = "2.6.6"
api("net.mamoe", "mirai-core-api", miraiVersion) // 编译代码使用
runtimeOnly("net.mamoe", "mirai-core", miraiVersion) // 运行时使用
}
@@ -85,7 +85,7 @@ dependencies {
<dependency>
<groupId>net.mamoe</groupId>
<artifactId>mirai-core-jvm</artifactId>
<version>2.6.5</version>
<version>2.6.6</version>
</dependency>
</dependencies>
```

0 comments on commit d092374

Please sign in to comment.