Skip to content

Commit

Permalink
build: 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cssxsh committed Jun 17, 2022
1 parent e46ab8c commit cd59c7b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group = "xyz.cssxsh"
version = "1.5.1"
version = "1.6.0"

repositories {
mavenLocal()
Expand Down Expand Up @@ -37,7 +37,7 @@ dependencies {
exclude(group = "org.slf4j")
exclude(group = "io.ktor", module = "ktor-client-core")
}
compileOnly("xyz.cssxsh.mirai:mirai-selenium-plugin:2.1.0")
compileOnly("xyz.cssxsh.mirai:mirai-selenium-plugin:2.1.1")
compileOnly("net.mamoe:mirai-core:2.11.1")
compileOnly("net.mamoe:mirai-core-utils:2.11.1")
api("com.cronutils:cron-utils:9.1.6") {
Expand All @@ -49,7 +49,7 @@ dependencies {

testImplementation(kotlin("test", "1.6.21"))
testImplementation("org.slf4j:slf4j-simple:1.7.36")
testImplementation("xyz.cssxsh.mirai:mirai-selenium-plugin:2.1.0")
testImplementation("xyz.cssxsh.mirai:mirai-selenium-plugin:2.1.1")
}

tasks {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import xyz.cssxsh.mirai.bilibili.command.*
import xyz.cssxsh.mirai.bilibili.data.*

object BiliHelperPlugin : KotlinPlugin(
JvmPluginDescription(id = "xyz.cssxsh.mirai.plugin.bilibili-helper", version = "1.5.1") {
JvmPluginDescription(id = "xyz.cssxsh.mirai.plugin.bilibili-helper", version = "1.6.0") {
name("bilibili-helper")
author("cssxsh")

Expand Down
2 changes: 2 additions & 0 deletions src/main/kotlin/xyz/cssxsh/mirai/bilibili/data/DataCron.kt
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ import kotlinx.serialization.encoding.*
@Serializable(with = DataCron.Serializer::class)
data class DataCron(val delegate: Cron) : Cron by delegate {

override fun toString(): String = asString()

companion object Serializer : KSerializer<DataCron> {

override val descriptor: SerialDescriptor =
Expand Down

0 comments on commit cd59c7b

Please sign in to comment.