This commit is contained in:
Him188 2021-02-03 19:55:29 +08:00
parent 1038d8f092
commit 8ac8089015
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(1612338532)
const val versionConst: String = "2.3.1"
val buildDate: Instant = Instant.ofEpochSecond(1612353243)
const val versionConst: String = "2.3.2"
@JvmStatic
val version: SemVersion = SemVersion(versionConst)

View File

@ -20,7 +20,7 @@ console 由后端和前端一起工作. 使用时必须选择一个前端.
| 版本类型 | 版本号 |
|:------:|:------------------------------:|
| 稳定 | 2.3.1 |
| 稳定 | 2.3.2 |
| 预览 | - |
| 开发 | [![Version]][Bintray Download] |

View File

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