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

Commit c8f6575

Browse files
committed
Update build constants and README
1 parent 5c03556 commit c8f6575

File tree

3 files changed

+7
-10
lines changed

3 files changed

+7
-10
lines changed

backend/mirai-console/src/internal/MiraiConsoleBuildConstants.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ import java.time.Instant
1414

1515
internal object MiraiConsoleBuildConstants { // auto-filled on build (task :mirai-console:fillBuildConstants)
1616
@JvmStatic
17-
val buildDate: Instant = Instant.ofEpochSecond(1603864859)
18-
const val versionConst: String = "1.0-RC"
17+
val buildDate: Instant = Instant.ofEpochSecond(1604041264)
18+
const val versionConst: String = "1.0-RC-1"
1919

2020
@JvmStatic
2121
val version: SemVersion = SemVersion(versionConst)

docs/ConfiguringProjects.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,17 @@ console 由后端和前端一起工作. 使用时必须选择一个前端.
1111
- `mirai-console-terminal`: 终端前端,适用于 JVM。
1212
- [`MiraiAndroid`](https://github.com/mzdluo123/MiraiAndroid): Android 应用前端。
1313

14-
**注意:`mirai-console` 1.0-RC 发布之前, 前端请使用 `mirai-console-pure` 而不是 `mirai-console-terminal`**
15-
1614
## 选择版本
1715

1816
有关各类版本的区别,参考 [版本规范](Appendix.md#版本规范)
1917

2018
[Version]: https://api.bintray.com/packages/him188moe/mirai/mirai-console/images/download.svg?
2119
[Bintray Download]: https://bintray.com/him188moe/mirai/mirai-console/
2220

23-
| 版本类型 | 版本号 |
24-
|:------:|:------------:|
25-
| 稳定 | - |
26-
| 预览 | 1.0-M4 |
21+
| 版本类型 | 版本号 |
22+
|:------:|:------------------------------:|
23+
| 稳定 | - |
24+
| 预览 | 1.0-RC-1 |
2725
| 开发 | [![Version]][Bintray Download] |
2826

2927
## 配置项目
@@ -74,7 +72,6 @@ dependencies {
7472
compileOnly("net.mamoe:mirai-console:$CONSOLE_VERSION") // 后端
7573

7674
testImplementation("net.mamoe:mirai-console-terminal:$CONSOLE_VERSION") // 前端, 用于启动测试
77-
testImplementation("net.mamoe:mirai-console-terminal:$CONSOLE_VERSION") // 前端, 用于启动测试
7875
}
7976
```
8077

tools/gradle-plugin/src/VersionConstants.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
package net.mamoe.mirai.console.gradle
1111

1212
internal object VersionConstants {
13-
const val CONSOLE_VERSION = "1.0-RC" // value is written here automatically during build
13+
const val CONSOLE_VERSION = "1.0-RC-1" // value is written here automatically during build
1414
const val CORE_VERSION = "1.3.2" // value is written here automatically during build
1515
}

0 commit comments

Comments
 (0)