Parcourir la source

Release v1.9.7

ryoii il y a 5 ans
Parent
commit
056beedba3

+ 11 - 0
CHANGELOG.md

@@ -1,5 +1,16 @@
 # 更新日志
 
+## \[1.9.7\] - 2021-01-25
+
+### 修复
+
+* 序列化错误导致引用回复不可用
+
+> 本版本为实验性,请酌情考虑更新
+> 仅进行版本适配,新功能请等待 `core 2.0` 的发布及本插件 `2.0` 的发布
+
+
+
 ## \[1.9.6\] - 2021-01-12
 
 ### 变更

+ 1 - 1
gradle.properties

@@ -1,5 +1,5 @@
 # build
-httpVersion=1.9.6
+httpVersion=1.9.7
 # style guide
 kotlin.code.style=official
 # config

+ 1 - 1
mirai-api-http/src/main/kotlin/net/mamoe/mirai/api/http/HttpApiPluginBase.kt

@@ -19,7 +19,7 @@ import java.io.File
 internal typealias CommandSubscriber = suspend (String, Long, Long, List<String>) -> Unit
 
 object HttpApiPluginBase : KotlinPlugin(
-    JvmPluginDescription(id = "net.mamoe.mirai-api-http", version = "1.9.6") {
+    JvmPluginDescription(id = "net.mamoe.mirai-api-http", version = "1.9.7") {
         author("ryoii")
         info("Mirai HTTP API Server Plugin")
     }