This commit is contained in:
Karlatemp 2021-01-31 23:08:52 +08:00
parent 24c0482d50
commit a5481accb5
No known key found for this signature in database
GPG Key ID: 21FBDDF664FF06F8
3 changed files with 6 additions and 6 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(1612015220)
const val versionConst: String = "2.2.1"
val buildDate: Instant = Instant.ofEpochSecond(1612105641)
const val versionConst: String = "2.2.2"
@JvmStatic
val version: SemVersion = SemVersion(versionConst)

View File

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