This commit is contained in:
Him188 2020-10-28 14:02:03 +08:00
parent b9f70b1c66
commit 34eb8eb9cb
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(1601134282)
const val versionConst: String = "1.0-RC-dev-29"
val buildDate: Instant = Instant.ofEpochSecond(1603864859)
const val versionConst: String = "1.0-RC"
@JvmStatic
val version: SemVersion = SemVersion(versionConst)

View File

@ -9,7 +9,7 @@
object Versions {
const val core = "1.3.2"
const val console = "1.0-RC-dev-32"
const val console = "1.0-RC"
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 = "1.0-RC-dev-32" // value is written here automatically during build
const val CONSOLE_VERSION = "1.0-RC" // value is written here automatically during build
const val CORE_VERSION = "1.3.2" // value is written here automatically during build
}