Skip to content

Commit

Permalink
build: 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cssxsh committed Jul 12, 2023
1 parent 66624a3 commit 3150636
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ plugins {
kotlin("jvm") version "1.8.10"
kotlin("plugin.serialization") version "1.8.10"

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

group = "xyz.cssxsh.mirai"
version = "1.4.0"
version = "1.4.1"

mavenCentralPublish {
useCentralS01()
Expand All @@ -33,7 +33,7 @@ dependencies {
implementation("org.apache.poi:poi-ooxml:5.2.3")
testImplementation(kotlin("test"))
//
implementation(platform("net.mamoe:mirai-bom:2.15.0-RC"))
implementation(platform("net.mamoe:mirai-bom:2.15.0"))
compileOnly("net.mamoe:mirai-core")
compileOnly("net.mamoe:mirai-core-utils")
compileOnly("net.mamoe:mirai-console-compiler-common")
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/xyz/cssxsh/mirai/admin/MiraiAdminPlugin.kt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ internal object MiraiAdminPlugin : KotlinPlugin(
JvmPluginDescription(
id = "xyz.cssxsh.mirai.plugin.mirai-administrator",
name = "mirai-administrator",
version = "1.4.0",
version = "1.4.1",
) {
author("cssxsh")
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ public object MiraiAdministrator : SimpleListenerHost() {
when (val millis = wait(contact = from)) {
null -> break
else -> {
logger.debug { "$${from.render()} timing message after ${millis}ms" }
logger.debug { "${from.render()} timing message after ${millis}ms" }
delay(millis)
}
}
Expand Down

0 comments on commit 3150636

Please sign in to comment.