Skip to content

Commit 57e6da9

Browse files
committed
chore: update project dependencies and version to 0.1.19
1 parent 67abcf5 commit 57e6da9

File tree

5 files changed

+6
-8
lines changed

5 files changed

+6
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ To use kdriver, add the following to your `build.gradle.kts`:
3939

4040
```kotlin
4141
dependencies {
42-
implementation("dev.kdriver:core:0.1.18")
42+
implementation("dev.kdriver:core:0.1.19")
4343
}
4444
```
4545

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66

77
allprojects {
88
group = "dev.kdriver"
9-
version = "0.1.18"
9+
version = "0.1.19"
1010

1111
repositories {
1212
mavenCentral()

cdp/build.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ kotlin {
6363
// jvm & js
6464
jvmToolchain(21)
6565
jvm {
66-
withJava()
6766
testRuns.named("test") {
6867
executionTask.configure {
6968
useJUnitPlatform()

core/build.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ kotlin {
3939
// jvm & js
4040
jvmToolchain(21)
4141
jvm {
42-
withJava()
4342
testRuns.named("test") {
4443
executionTask.configure {
4544
useJUnitPlatform()

settings.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,20 @@ dependencyResolutionManagement {
1313
versionCatalogs {
1414
create("libs") {
1515
// Plugins
16-
version("kotlin", "2.1.10")
16+
version("kotlin", "2.1.21")
1717
plugin("multiplatform", "org.jetbrains.kotlin.multiplatform").versionRef("kotlin")
1818
plugin("serialization", "org.jetbrains.kotlin.plugin.serialization").versionRef("kotlin")
1919
plugin("kover", "org.jetbrains.kotlinx.kover").version("0.8.3")
2020
plugin("dokka", "org.jetbrains.dokka").version("2.0.0")
21-
plugin("ksp", "com.google.devtools.ksp").version("2.1.10-1.0.30")
21+
plugin("ksp", "com.google.devtools.ksp").version("2.1.21-2.0.2")
2222
plugin("maven", "com.vanniktech.maven.publish").version("0.30.0")
2323

2424
// Kaccelero
25-
version("kaccelero", "0.5.2")
25+
version("kaccelero", "0.6.0")
2626
library("kaccelero-core", "dev.kaccelero", "core").versionRef("kaccelero")
2727

2828
// Ktor
29-
version("ktor", "2.3.12")
29+
version("ktor", "3.1.3")
3030
library("ktor-serialization-kotlinx-json", "io.ktor", "ktor-serialization-kotlinx-json").versionRef("ktor")
3131
library("ktor-client-websockets", "io.ktor", "ktor-client-websockets").versionRef("ktor")
3232
library("ktor-client-content-negotiation", "io.ktor", "ktor-client-content-negotiation").versionRef("ktor")

0 commit comments

Comments
 (0)