소스 검색

Release 2.3.1

ryoii 4 년 전
부모
커밋
bb0b957469
3개의 변경된 파일11개의 추가작업 그리고 2개의 파일을 삭제
  1. 9 0
      CHANGELOG.md
  2. 1 1
      gradle.properties
  3. 1 1
      mirai-api-http/src/main/kotlin/net/mamoe/mirai/api/http/HttpApiPluginBase.kt

+ 9 - 0
CHANGELOG.md

@@ -1,5 +1,14 @@
 # 更新日志
 
+## \[2.3.1\] - 2021-09-12
+
+### 修复
+
++ 修复文件上传后没有发布消息提示, #468
++ 减少上传资源时出现内存泄露的可能
+
+
+
 ## \[2.3.0\] - 2021-09-09
 
 ### 修复

+ 1 - 1
gradle.properties

@@ -6,7 +6,7 @@ kotlin.parallel.tasks.in.project=true
 
 
 # build
-httpVersion=2.3.0
+httpVersion=2.3.1
 
 # kotlin
 kotlinVersion=1.5.10

+ 1 - 1
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.0") {
+    JvmPluginDescription(id = "net.mamoe.mirai-api-http", version = "2.3.1") {
         author("ryoii")
         info("Mirai HTTP API Server Plugin")
     }