Skip to content

Commit

Permalink
build: 1.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
cssxsh committed Nov 1, 2022
1 parent 21c884f commit d27ea10
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
plugins {
kotlin("jvm") version "1.7.10"
kotlin("plugin.serialization") version "1.7.10"
kotlin("jvm") version "1.7.20"
kotlin("plugin.serialization") version "1.7.20"

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

group = "io.github.gnuf0rce"
version = "1.2.5"
version = "1.2.6"

mavenCentralPublish {
useCentralS01()
Expand All @@ -26,22 +26,22 @@ repositories {
}

dependencies {
implementation("io.ktor:ktor-client-okhttp:2.1.1") {
implementation("io.ktor:ktor-client-okhttp:2.1.2") {
exclude(group = "org.jetbrains.kotlin")
exclude(group = "org.jetbrains.kotlinx")
exclude(group = "org.slf4j")
}
implementation("io.ktor:ktor-client-encoding:2.1.1") {
implementation("io.ktor:ktor-client-encoding:2.1.2") {
exclude(group = "org.jetbrains.kotlin")
exclude(group = "org.jetbrains.kotlinx")
exclude(group = "org.slf4j")
}
implementation("io.ktor:ktor-client-content-negotiation:2.1.1") {
implementation("io.ktor:ktor-client-content-negotiation:2.1.2") {
exclude(group = "org.jetbrains.kotlin")
exclude(group = "org.jetbrains.kotlinx")
exclude(group = "org.slf4j")
}
implementation("io.ktor:ktor-serialization-kotlinx-json:2.1.1") {
implementation("io.ktor:ktor-serialization-kotlinx-json:2.1.2") {
exclude(group = "org.jetbrains.kotlin")
exclude(group = "org.jetbrains.kotlinx")
exclude(group = "org.slf4j")
Expand All @@ -56,8 +56,8 @@ dependencies {
compileOnly("com.google.code.findbugs:jsr305:3.0.2")
// test
testImplementation(kotlin("test"))
testImplementation("org.slf4j:slf4j-simple:2.0.1")
testImplementation("net.mamoe:mirai-logging-slf4j:2.13.0-M1")
testImplementation("org.slf4j:slf4j-simple:2.0.3")
testImplementation("net.mamoe:mirai-logging-slf4j:2.13.0")
}

mirai {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import net.mamoe.mirai.console.plugin.*
import net.mamoe.mirai.console.util.*

object RssHelperPlugin : KotlinPlugin(
JvmPluginDescription(id = "io.github.gnuf0rce.rss-helper", version = "1.2.5") {
JvmPluginDescription(id = "io.github.gnuf0rce.rss-helper", version = "1.2.6") {
name("rss-helper")
author("cssxsh")
}
Expand Down

0 comments on commit d27ea10

Please sign in to comment.