1
0
mirror of https://github.com/mamoe/mirai.git synced 2025-03-26 07:20:09 +08:00
This commit is contained in:
Him188 2020-09-12 00:01:14 +08:00
parent 568d37812b
commit 96abc36a34
2 changed files with 8 additions and 3 deletions
CHANGELOG.md
buildSrc/src/main/kotlin

View File

@ -1,5 +1,10 @@
# Version 1.x
## `1.2.3` 2020/9/11
- 在同步事件失败时添加重试, 改善 #249, #482, #542, #567, #590
- 修复不断重连同一个服务器的问题 (#589)
- 更新到 Kotlin `1.4.10`
## `1.2.2` 2020/8/22
- 修复依赖冲突问题 (#523)

View File

@ -9,12 +9,12 @@
object Versions {
object Mirai {
const val version = "1.2.2"
const val version = "1.2.3"
}
object Kotlin {
const val compiler = "1.4.0"
const val stdlib = "1.4.0"
const val compiler = "1.4.10"
const val stdlib = "1.4.10"
const val coroutines = "1.3.9"
const val atomicFU = "0.14.4"
const val serialization = "1.0.0-RC"