Release version 2.7-RC

This commit is contained in:
Him188 2021-08-11 15:28:56 +08:00
parent f5f3603dcc
commit 00d7430f06
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(1625578590)
const val versionConst: String = "2.7-M2"
val buildDate: Instant = Instant.ofEpochSecond(1628666895)
const val versionConst: String = "2.7-RC"
@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-M2" // value is written here automatically during build
const val CORE_VERSION = "2.7-M2" // value is written here automatically during build
const val CONSOLE_VERSION = "2.7-RC" // value is written here automatically during build
const val CORE_VERSION = "2.7-RC" // value is written here automatically during build
}