Skip to content

Commit

Permalink
update ktor and ktor-cio to let be build, also release 0.6.3 (i hope)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jannik Reimers committed Apr 22, 2024
1 parent 928a3d1 commit 969a223
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ fun String.runCommand(
group = "org.hyacinthbots.allium"
//version = "0.6.0-build.local-" + "git rev-parse --short=8 HEAD".runCommand(workingDir = rootDir) + "-" + "git branch --show-current".runCommand(workingDir = rootDir).replace("/", ".")
var buildTime = Date().time / 1000
version = "0.6.2"
version = "0.6.3"
// The current LTS Java version
val javaVersion = 17

Expand Down Expand Up @@ -101,6 +101,7 @@ dependencies {
implementation(libs.doc.gen)
implementation(libs.kmongo)
implementation(libs.ktor)
implementation(libs.ktor.cio)

// Logging dependencies
implementation(libs.jansi)
Expand Down
3 changes: 2 additions & 1 deletion libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ gson = "2.10.1"
doc-gen = "0.1.4"
kmongo = "4.9.0"
groovy = "3.0.20"
ktor = "2.3.9"
ktor = "2.3.10"

[libraries]
detekt = { module = "io.gitlab.arturbosch.detekt:detekt-formatting", version.ref = "detekt" }
Expand All @@ -30,3 +30,4 @@ doc-gen = { module="org.hyacinthbots:doc-generator", version.ref = "doc-gen" }
kmongo = { module="org.litote.kmongo:kmongo-coroutine-serialization", version.ref = "kmongo"}
groovy = { module="org.codehaus.groovy:groovy", version.ref = "groovy" }
ktor = { module="io.ktor:ktor-client-core", version.ref = "ktor"}
ktor-cio = { module="io.ktor:ktor-client-cio", version.ref = "ktor"}

0 comments on commit 969a223

Please sign in to comment.