Skip to content
This repository was archived by the owner on Feb 10, 2023. It is now read-only.

Commit 18affb2

Browse files
committed
2.0-RC
1 parent 7d353f9 commit 18affb2

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

backend/mirai-console/src/internal/MiraiConsoleBuildConstants.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ import java.time.Instant
1414

1515
internal object MiraiConsoleBuildConstants { // auto-filled on build (task :mirai-console:fillBuildConstants)
1616
@JvmStatic
17-
val buildDate: Instant = Instant.ofEpochSecond(1610293424)
18-
const val versionConst: String = "2.0-RC-dev-1"
17+
val buildDate: Instant = Instant.ofEpochSecond(1610449212)
18+
const val versionConst: String = "2.0-RC"
1919

2020
@JvmStatic
2121
val version: SemVersion = SemVersion(versionConst)

buildSrc/src/main/kotlin/Versions.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
import org.gradle.api.attributes.Attribute
1313

1414
object Versions {
15-
const val core = "2.0-RC-dev-9"
16-
const val console = "2.0-RC-dev-2"
15+
const val core = "2.0-RC"
16+
const val console = "2.0-RC"
1717
const val consoleGraphical = "0.0.7"
1818
const val consoleTerminal = console
1919

docs/ConfiguringProjects.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ console 由后端和前端一起工作. 使用时必须选择一个前端.
2020

2121
| 版本类型 | 版本号 |
2222
|:------:|:------------------------------:|
23-
| 稳定 | 1.1.0 |
24-
| 预览 | 2.0-M2 |
23+
| 稳定 | 2.0-RC |
24+
| 预览 | - |
2525
| 开发 | [![Version]][Bintray Download] |
2626

2727
## 配置项目

tools/gradle-plugin/src/VersionConstants.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
package net.mamoe.mirai.console.gradle
1111

1212
internal object VersionConstants {
13-
const val CONSOLE_VERSION = "2.0-RC-dev-2" // value is written here automatically during build
14-
const val CORE_VERSION = "2.0-RC-dev-9" // value is written here automatically during build
13+
const val CONSOLE_VERSION = "2.0-RC" // value is written here automatically during build
14+
const val CORE_VERSION = "2.0-RC" // value is written here automatically during build
1515
}

0 commit comments

Comments
 (0)