From 766d8804690e693135876875776672a833b6b4b9 Mon Sep 17 00:00:00 2001 From: ryoii Date: Mon, 14 Jun 2021 16:02:00 +0800 Subject: [PATCH] Release 2.0.2 --- CHANGELOG.md | 9 +++++++++ gradle.properties | 2 +- .../kotlin/net/mamoe/mirai/api/http/HttpApiPluginBase.kt | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c51837e6..0c64e9ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # 更新日志 +## \[2.0.2\] - 2021-06-14 + +### 修复 + ++ 管理员处理入群请求时,拒绝消息丢失 ++ 可能存在着的未读消息序列化错误 + + + ## \[2.0.1\] - 2021-06-12 ### 修复 diff --git a/gradle.properties b/gradle.properties index 33804b56..0eda4bcd 100644 --- a/gradle.properties +++ b/gradle.properties @@ -6,7 +6,7 @@ kotlin.parallel.tasks.in.project=true # build -httpVersion=2.0.1 +httpVersion=2.0.2 # kotlin kotlinVersion=1.4.30 diff --git a/mirai-api-http/src/main/kotlin/net/mamoe/mirai/api/http/HttpApiPluginBase.kt b/mirai-api-http/src/main/kotlin/net/mamoe/mirai/api/http/HttpApiPluginBase.kt index 2fd49d1d..198a3206 100644 --- a/mirai-api-http/src/main/kotlin/net/mamoe/mirai/api/http/HttpApiPluginBase.kt +++ b/mirai-api-http/src/main/kotlin/net/mamoe/mirai/api/http/HttpApiPluginBase.kt @@ -24,7 +24,7 @@ import java.io.File * 主要职责为读取配置文件 [MainSetting] 和 启动具体实现 [MahPluginImpl] */ object HttpApiPluginBase : KotlinPlugin( - JvmPluginDescription(id = "net.mamoe.mirai-api-http", version = "2.0.1") { + JvmPluginDescription(id = "net.mamoe.mirai-api-http", version = "2.0.2") { author("ryoii") info("Mirai HTTP API Server Plugin") }