1.1.0-dev-29

This commit is contained in:
Him188 2020-11-29 00:15:45 +08:00
parent d2b0ebbd79
commit 3a5d95aee3
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(1606543118)
const val versionConst: String = "1.1.0-dev-1"
val buildDate: Instant = Instant.ofEpochSecond(1606580129)
const val versionConst: String = "1.1.0-dev-29"
@JvmStatic
val version: SemVersion = SemVersion(versionConst)

View File

@ -11,7 +11,7 @@
object Versions {
const val core = "1.3.3"
const val console = "1.1.0-dev-1"
const val console = "1.1.0-dev-29"
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.1.0-dev-1" // value is written here automatically during build
const val CONSOLE_VERSION = "1.1.0-dev-29" // value is written here automatically during build
const val CORE_VERSION = "1.3.3" // value is written here automatically during build
}