2.2.0-dev-5

This commit is contained in:
Him188 2021-01-28 11:59:14 +08:00
parent d3761e5728
commit d9128e00e8
3 changed files with 5 additions and 5 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(1611799848)
const val versionConst: String = "2.2.0-dev-4"
val buildDate: Instant = Instant.ofEpochSecond(1611806210)
const val versionConst: String = "2.2.0-dev-5"
@JvmStatic
val version: SemVersion = SemVersion(versionConst)

View File

@ -12,7 +12,7 @@
import org.gradle.api.attributes.Attribute
object Versions {
const val core = "2.0.0"
const val core = "2.0.0" // WARNING: This might not be up-to-date since included in mirai build.
const val console = "2.0.0"
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.2.0-dev-4" // value is written here automatically during build
const val CORE_VERSION = "2.2.0-dev-4" // value is written here automatically during build
const val CONSOLE_VERSION = "2.2.0-dev-5" // value is written here automatically during build
const val CORE_VERSION = "2.2.0-dev-5" // value is written here automatically during build
}