From 4f422860953468dd0be88e6304efa194a4fbdb56 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 3 May 2024 13:09:49 +0000 Subject: [PATCH] chore(deps): update upgrade all non-major gradle dependencies --- build.gradle.kts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index f16d4b4..5378ffe 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,7 +1,7 @@ plugins { - kotlin("multiplatform") version "1.9.22" - kotlin("plugin.serialization") version "1.9.22" - id("io.kotest.multiplatform") version "5.8.0" + kotlin("multiplatform") version "1.9.23" + kotlin("plugin.serialization") version "1.9.23" + id("io.kotest.multiplatform") version "5.8.1" id("org.jlleitschuh.gradle.ktlint") version "12.1.0" } @@ -39,15 +39,15 @@ kotlin { val commonMain by getting { dependencies { // CLI - implementation("com.github.ajalt.clikt:clikt:4.2.2") + implementation("com.github.ajalt.clikt:clikt:4.4.0") // Date Time Support implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.5.0") // Serialization implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.3") // Atomic - implementation("org.jetbrains.kotlinx:atomicfu:0.23.2") + implementation("org.jetbrains.kotlinx:atomicfu:0.24.0") // Http Client - val ktorVersion = "2.3.8" + val ktorVersion = "2.3.10" implementation("io.ktor:ktor-client-core:$ktorVersion") implementation("io.ktor:ktor-client-curl:$ktorVersion") implementation("io.ktor:ktor-client-content-negotiation:$ktorVersion") @@ -56,7 +56,7 @@ kotlin { } val commonTest by getting { dependencies { - val kotestVersion = "5.8.0" + val kotestVersion = "5.8.1" implementation(kotlin("test-common")) implementation(kotlin("test-annotations-common")) implementation("io.kotest:kotest-framework-engine:$kotestVersion")