This commit is contained in:
Him188 2021-01-12 19:00:29 +08:00
parent 7d353f9ca1
commit 18affb2b0c
4 changed files with 8 additions and 8 deletions

View File

@ -14,8 +14,8 @@ import java.time.Instant
internal object MiraiConsoleBuildConstants { // auto-filled on build (task :mirai-console:fillBuildConstants) internal object MiraiConsoleBuildConstants { // auto-filled on build (task :mirai-console:fillBuildConstants)
@JvmStatic @JvmStatic
val buildDate: Instant = Instant.ofEpochSecond(1610293424) val buildDate: Instant = Instant.ofEpochSecond(1610449212)
const val versionConst: String = "2.0-RC-dev-1" const val versionConst: String = "2.0-RC"
@JvmStatic @JvmStatic
val version: SemVersion = SemVersion(versionConst) val version: SemVersion = SemVersion(versionConst)

View File

@ -12,8 +12,8 @@
import org.gradle.api.attributes.Attribute import org.gradle.api.attributes.Attribute
object Versions { object Versions {
const val core = "2.0-RC-dev-9" const val core = "2.0-RC"
const val console = "2.0-RC-dev-2" const val console = "2.0-RC"
const val consoleGraphical = "0.0.7" const val consoleGraphical = "0.0.7"
const val consoleTerminal = console const val consoleTerminal = console

View File

@ -20,8 +20,8 @@ console 由后端和前端一起工作. 使用时必须选择一个前端.
| 版本类型 | 版本号 | | 版本类型 | 版本号 |
|:------:|:------------------------------:| |:------:|:------------------------------:|
| 稳定 | 1.1.0 | | 稳定 | 2.0-RC |
| 预览 | 2.0-M2 | | 预览 | - |
| 开发 | [![Version]][Bintray Download] | | 开发 | [![Version]][Bintray Download] |
## 配置项目 ## 配置项目

View File

@ -10,6 +10,6 @@
package net.mamoe.mirai.console.gradle package net.mamoe.mirai.console.gradle
internal object VersionConstants { internal object VersionConstants {
const val CONSOLE_VERSION = "2.0-RC-dev-2" // value is written here automatically during build const val CONSOLE_VERSION = "2.0-RC" // value is written here automatically during build
const val CORE_VERSION = "2.0-RC-dev-9" // value is written here automatically during build const val CORE_VERSION = "2.0-RC" // value is written here automatically during build
} }