From 4fc8b103ffa340aead7a5044a903ea92628b1f91 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 28 Dec 2022 10:55:56 +0000 Subject: [PATCH] Update kotlin monorepo to v1.8.0 --- build.gradle.kts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 3411ea35..90528080 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,8 +1,8 @@ plugins { // Apply the Kotlin JVM plugin to add support for Kotlin. - kotlin("jvm") version "1.7.22" + kotlin("jvm") version "1.8.0" // Kotlinx serialization for any data format - kotlin("plugin.serialization") version "1.7.22" + kotlin("plugin.serialization") version "1.8.0" // Shade the plugin id("com.github.johnrengelman.shadow") version "7.1.2" // Allow publishing @@ -28,10 +28,10 @@ repositories { dependencies { // Use the Kotlin JDK 8 standard library. - compileOnly("org.jetbrains.kotlin:kotlin-stdlib:1.7.22") + compileOnly("org.jetbrains.kotlin:kotlin-stdlib:1.8.0") // Use the Kotlin reflect library. - compileOnly("org.jetbrains.kotlin:kotlin-reflect:1.7.22") + compileOnly("org.jetbrains.kotlin:kotlin-reflect:1.8.0") // Use the kotlin test library testImplementation("io.kotest:kotest-assertions-core:5.5.4")