Skip to content
This repository has been archived by the owner on Feb 10, 2023. It is now read-only.

Commit

Permalink
2.0-RC
Browse files Browse the repository at this point in the history
  • Loading branch information
Him188 committed Jan 12, 2021
1 parent 7d353f9 commit 18affb2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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(1610293424)
const val versionConst: String = "2.0-RC-dev-1"
val buildDate: Instant = Instant.ofEpochSecond(1610449212)
const val versionConst: String = "2.0-RC"

@JvmStatic
val version: SemVersion = SemVersion(versionConst)
Expand Down
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
import org.gradle.api.attributes.Attribute

object Versions {
const val core = "2.0-RC-dev-9"
const val console = "2.0-RC-dev-2"
const val core = "2.0-RC"
const val console = "2.0-RC"
const val consoleGraphical = "0.0.7"
const val consoleTerminal = console

Expand Down
4 changes: 2 additions & 2 deletions docs/ConfiguringProjects.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ console 由后端和前端一起工作. 使用时必须选择一个前端.

| 版本类型 | 版本号 |
|:------:|:------------------------------:|
| 稳定 | 1.1.0 |
| 预览 | 2.0-M2 |
| 稳定 | 2.0-RC |
| 预览 | - |
| 开发 | [![Version]][Bintray Download] |

## 配置项目
Expand Down
4 changes: 2 additions & 2 deletions tools/gradle-plugin/src/VersionConstants.kt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
package net.mamoe.mirai.console.gradle

internal object VersionConstants {
const val CONSOLE_VERSION = "2.0-RC-dev-2" // value is written here automatically during build
const val CORE_VERSION = "2.0-RC-dev-9" // value is written here automatically during build
const val CONSOLE_VERSION = "2.0-RC" // value is written here automatically during build
const val CORE_VERSION = "2.0-RC" // value is written here automatically during build
}

0 comments on commit 18affb2

Please sign in to comment.