This commit is contained in:
Him188 2021-02-03 20:24:25 +08:00
parent 3b06df6bc5
commit af72c4ec25
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.3.1"
const val project = "2.3.2"
const val core = project
const val console = project

View File

@ -11,7 +11,7 @@
| 版本类型 | 版本号 |
|:------:|:------------------------------:|
| 稳定 | 2.3.1 |
| 稳定 | 2.3.2 |
| 预览 | - |
| 开发 | [![Version]][Bintray Download] |
@ -40,7 +40,7 @@ repositories {
}
dependencies {
api("net.mamoe", "mirai-core", "2.3.1") // 替换为你需要的版本号
api("net.mamoe", "mirai-core", "2.3.2") // 替换为你需要的版本号
}
```
@ -64,7 +64,7 @@ repositories {
}
dependencies {
api('net.mamoe', 'mirai-core', '2.3.1') // 替换为你需要的版本号
api('net.mamoe', 'mirai-core', '2.3.2') // 替换为你需要的版本号
}
```
@ -77,7 +77,7 @@ dependencies {
mirai 在开发时需要 `net.mamoe:mirai-core-api`, 在运行时需要 `net.mamoe:mirai-core`。可以在开发和编译时只依赖 `mirai-core-api`,会减轻对 IDE 的负担。
```kotlin
dependencies {
val miraiVersion = "2.3.1" // 替换为你需要的版本号
val miraiVersion = "2.3.2" // 替换为你需要的版本号
api("net.mamoe", "mirai-core-api", miraiVersion) // 编译代码使用
runtimeOnly("net.mamoe", "mirai-core", miraiVersion) // 运行时使用
}
@ -105,7 +105,7 @@ dependencies {
<dependency>
<groupId>net.mamoe</groupId>
<artifactId>mirai-core-jvm</artifactId>
<version>2.3.1</version> <!-- 替换版本为你需要的版本 -->
<version>2.3.2</version> <!-- 替换版本为你需要的版本 -->
</dependency>
</dependencies>
```