From 16ded1afb883273371318c6258d174a34eb51e91 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 27 Nov 2024 15:27:20 +0000 Subject: [PATCH 1/2] Bump the kotlin group with 4 updates Bumps the kotlin group with 4 updates: [org.jetbrains.kotlin:kotlin-stdlib](https://github.com/JetBrains/kotlin), [org.jetbrains.kotlin:kotlin-reflect](https://github.com/JetBrains/kotlin), [org.jetbrains.kotlin:kotlin-test-junit5](https://github.com/JetBrains/kotlin) and [jvm](https://github.com/JetBrains/kotlin). Updates `org.jetbrains.kotlin:kotlin-stdlib` from 2.0.21 to 2.1.0 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/v2.1.0/ChangeLog.md) - [Commits](https://github.com/JetBrains/kotlin/compare/v2.0.21...v2.1.0) Updates `org.jetbrains.kotlin:kotlin-reflect` from 2.0.21 to 2.1.0 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/v2.1.0/ChangeLog.md) - [Commits](https://github.com/JetBrains/kotlin/compare/v2.0.21...v2.1.0) Updates `org.jetbrains.kotlin:kotlin-test-junit5` from 2.0.21 to 2.1.0 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/v2.1.0/ChangeLog.md) - [Commits](https://github.com/JetBrains/kotlin/compare/v2.0.21...v2.1.0) Updates `jvm` from 2.0.21 to 2.1.0 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/v2.1.0/ChangeLog.md) - [Commits](https://github.com/JetBrains/kotlin/compare/v2.0.21...v2.1.0) --- updated-dependencies: - dependency-name: org.jetbrains.kotlin:kotlin-stdlib dependency-type: direct:production update-type: version-update:semver-minor dependency-group: kotlin - dependency-name: org.jetbrains.kotlin:kotlin-reflect dependency-type: direct:production update-type: version-update:semver-minor dependency-group: kotlin - dependency-name: org.jetbrains.kotlin:kotlin-test-junit5 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: kotlin - dependency-name: jvm dependency-type: direct:production update-type: version-update:semver-minor dependency-group: kotlin ... Signed-off-by: dependabot[bot] --- build.gradle.kts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 2247b53..5438bc0 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -4,7 +4,7 @@ import java.text.SimpleDateFormat import java.util.* plugins { - kotlin("jvm") version "2.0.21" + kotlin("jvm") version "2.1.0" id("maven-publish") id("signing") id("com.github.ben-manes.versions") version "0.51.0" @@ -64,8 +64,8 @@ dependencies { } } } - implementation("org.jetbrains.kotlin:kotlin-stdlib:2.0.21") - implementation("org.jetbrains.kotlin:kotlin-reflect:2.0.21") + implementation("org.jetbrains.kotlin:kotlin-stdlib:2.1.0") + implementation("org.jetbrains.kotlin:kotlin-reflect:2.1.0") implementation("io.github.microutils:kotlin-logging:3.0.5") implementation("org.slf4j:slf4j-api:2.0.16") @@ -79,7 +79,7 @@ dependencies { implementation("com.google.re2j:re2j:1.7") // implementation("com.github.fge:json-schema-validator:2.2.6") - testImplementation("org.jetbrains.kotlin:kotlin-test-junit5:2.0.21") + testImplementation("org.jetbrains.kotlin:kotlin-test-junit5:2.1.0") testImplementation("io.kotest:kotest-runner-junit5:5.9.1") testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.11.3") } From 65c2a3856716d5b22ecabe836c07406df2191713 Mon Sep 17 00:00:00 2001 From: Tobias Gesellchen Date: Thu, 28 Nov 2024 21:16:15 +0100 Subject: [PATCH 2/2] Bump the Kotlin dependency constraint to 2.1.0 --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 5438bc0..7d0e1df 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -37,7 +37,7 @@ dependencies { implementation(it) { version { strictly("[1.6,3)") - prefer("2.0.21") + prefer("2.1.0") } } }