2.7-M2-dev-1

This commit is contained in:
Karlatemp 2021-06-23 11:43:55 +08:00
parent ece9b9b689
commit ea3f6da103
No known key found for this signature in database
GPG Key ID: 21FBDDF664FF06F8
2 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(1624126543)
const val versionConst: String = "2.7-M1"
val buildDate: Instant = Instant.ofEpochSecond(1624419793)
const val versionConst: String = "2.7-M2-dev-1"
@JvmStatic
val version: SemVersion = SemVersion(versionConst)

View File

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