Skip to content

Commit a627e66

Browse files
committed
build: 2.3.0
1 parent af3eaec commit a627e66

File tree

5 files changed

+14
-5
lines changed

5 files changed

+14
-5
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## v2.2.2 (23/09/..)
2+
3+
1. fix: copyTo
4+
2. fix: ignore
5+
6+
## v2.2.1 (23/08/03)
7+
8+
1. update: repositories
9+
2. fix: game data
10+
111
## v2.2.0 (23/07/13)
212

313
1. update: dependencies mirai 2.15.0

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ B. 选项
138138

139139
### 助手表情指令
140140

141-
** 需要 [Meme Helper](https://github.com/cssxsh/meme-helper) 作为前置**
141+
**需要 [Meme Helper](https://github.com/cssxsh/meme-helper) 作为前置**
142142

143143
| 指令 | 描述 |
144144
|:-------------------------------|:---------|

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
group = "xyz.cssxsh"
10-
version = "2.2.1"
10+
version = "2.2.2"
1111

1212
mavenCentralPublish {
1313
useCentralS01()

src/main/kotlin/xyz/cssxsh/mirai/arknights/ArknightsHelperPlugin.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import kotlin.collections.*
1212

1313
@PublishedApi
1414
internal object ArknightsHelperPlugin : KotlinPlugin(
15-
JvmPluginDescription("xyz.cssxsh.mirai.plugin.arknights-helper", "2.2.1") {
15+
JvmPluginDescription("xyz.cssxsh.mirai.plugin.arknights-helper", "2.2.2") {
1616
name("arknights-helper")
1717
author("cssxsh")
1818

src/test/kotlin/xyz/cssxsh/arknights/CacheDataHolderTest.kt

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,10 @@ import xyz.cssxsh.arknights.excel.*
99
import xyz.cssxsh.arknights.weibo.*
1010
import xyz.cssxsh.arknights.penguin.*
1111
import xyz.cssxsh.arknights.prts.*
12-
import java.io.File
1312
import java.time.*
1413

1514
internal class CacheDataHolderTest {
16-
private val folder = File("./test").apply { mkdirs() }
15+
private val folder = java.io.File("./run").apply { mkdirs() }
1716
private val ignore: suspend (Throwable) -> Boolean = { it is java.io.IOException }
1817
private val video = VideoDataHolder(folder = folder, ignore = ignore)
1918
private val blog = MicroBlogDataHolder(folder = folder, ignore = ignore)

0 commit comments

Comments
 (0)