This commit is contained in:
Him188 2021-01-15 17:52:30 +08:00
parent 27f0c73dc3
commit 8a745d388c
3 changed files with 12 additions and 10 deletions

View File

@ -12,7 +12,7 @@
import org.gradle.api.attributes.Attribute
object Versions {
const val project = "2.0.0-dev-2"
const val project = "2.0.0"
const val kotlinCompiler = "1.4.21"
const val kotlinStdlib = "1.4.21"

View File

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

View File

@ -59,7 +59,7 @@
### `2.0-RC` -> `2.0.0`
本文编写时 `2.0.0` 还未发布。如果你阅读时已经发布了,请更新到 `2.0.0`。不需要额外迁移
直接把版本号更改为 `2.0.0`
至此你已经成功升级到了 mirai 2.0。[回到 Mirai 文档索引](README.md#jvm-平台-mirai-开发)
@ -100,9 +100,7 @@ Contact.uploadImage(contact, inputStream); // 返回 Image 消息
Contact.uploadImage(contact, file); // 返回 Image 消息
```
### `2.0-M2` -> `2.0-RC` (`2.0.0`)
本文编写时 `2.0.0` 还未发布。如果你阅读时已经发布了,请更新到 `2.0.0` 而不需要更新到 `2.0-RC`
### `2.0-M2` -> `2.0-RC`
1. 戳一戳事件由以前的多个事件变为了统一的单个 `NudgeEvent`。若有使用请直接参考 `NudgeEvent` 源码修改。
@ -113,4 +111,8 @@ Contact.uploadImage(contact, file); // 返回 Image 消息
3. `IMirai` 低级 API 方法名现在不再带有 `_lowLevel` 前缀, 直接删除前缀即可。
### `2.0-RC` -> `2.0.0`
直接把版本号更改为 `2.0.0`
至此你已经成功升级到了 mirai 2.0。[回到 Mirai 文档索引](README.md#jvm-平台-mirai-开发)