diff --git a/CHANGELOG.md b/CHANGELOG.md index 875c368b..422e1aea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # 更新日志 +## \[2.3.3\] - 2021-10-28 + +### 修复 + ++ ws, reverse ws, web hook 下未知事件报错 + + + ## \[2.3.2\] - 2021-10-19 ### 修复 diff --git a/gradle.properties b/gradle.properties index 829f5a2a..21582061 100644 --- a/gradle.properties +++ b/gradle.properties @@ -6,7 +6,7 @@ kotlin.parallel.tasks.in.project=true # build -httpVersion=2.3.2 +httpVersion=2.3.3 # kotlin kotlinVersion=1.5.10 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 26727bcb..697d4a3a 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.3.2") { + JvmPluginDescription(id = "net.mamoe.mirai-api-http", version = "2.3.3") { author("ryoii") info("Mirai HTTP API Server Plugin") }