2.0-RC-dev-1

This commit is contained in:
Him188 2021-01-10 23:43:54 +08:00
parent 1a2d484a45
commit d13e1e6d44
3 changed files with 4 additions and 4 deletions

View File

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

View File

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

View File

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