Skip to content

Commit 47188d5

Browse files
committed
build: 2.2.0
1 parent 26998c6 commit 47188d5

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## v2.2.0 (23/07/13)
2+
3+
1. update: dependencies mirai 2.15.0
4+
2. fix: handle exception
5+
3. update: data structure
6+
17
## v2.1.7 (23/06/10)
28

39
1. update: data structure

build.gradle.kts

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ plugins {
22
kotlin("jvm") version "1.8.10"
33
kotlin("plugin.serialization") version "1.8.10"
44

5-
id("net.mamoe.mirai-console") version "2.15.0-RC"
5+
id("net.mamoe.mirai-console") version "2.15.0"
66
id("me.him188.maven-central-publish") version "1.0.0-dev-3"
77
}
88

99
group = "xyz.cssxsh"
10-
version = "2.1.7"
10+
version = "2.2.0"
1111

1212
mavenCentralPublish {
1313
useCentralS01()
@@ -31,7 +31,7 @@ dependencies {
3131
compileOnly("xyz.cssxsh:meme-helper:1.2.0")
3232
testImplementation(kotlin("test"))
3333
//
34-
implementation(platform("net.mamoe:mirai-bom:2.15.0-RC"))
34+
implementation(platform("net.mamoe:mirai-bom:2.15.0"))
3535
compileOnly("net.mamoe:mirai-console-compiler-common")
3636
//
3737
implementation(platform("io.ktor:ktor-bom:2.2.4"))

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

+3-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ import net.mamoe.mirai.event.*
1010
import xyz.cssxsh.arknights.*
1111
import kotlin.collections.*
1212

13-
public object ArknightsHelperPlugin : KotlinPlugin(
14-
JvmPluginDescription("xyz.cssxsh.mirai.plugin.arknights-helper", "2.1.7") {
13+
@PublishedApi
14+
internal object ArknightsHelperPlugin : KotlinPlugin(
15+
JvmPluginDescription("xyz.cssxsh.mirai.plugin.arknights-helper", "2.2.0") {
1516
name("arknights-helper")
1617
author("cssxsh")
1718

0 commit comments

Comments
 (0)