From c0c85e74e3d06819a66f3020ca656c9542430175 Mon Sep 17 00:00:00 2001 From: "scala-steward-simy4[bot]" <150573504+scala-steward-simy4[bot]@users.noreply.github.com> Date: Sun, 21 Jun 2026 01:09:54 +0000 Subject: [PATCH 1/2] Update kotest-property-jvm, ... to 6.2.1 --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 76fffb9..ddf661c 100644 --- a/build.sbt +++ b/build.sbt @@ -179,8 +179,8 @@ lazy val kotest = (project in file("kotest")) moduleName := "coregex-kotest", description := "Kotest bindings for coregex library.", libraryDependencies ++= Seq( - "io.kotest" % "kotest-property-jvm" % "6.1.11" % Provided, - "io.kotest" % "kotest-runner-junit6" % "6.1.11" % Test, + "io.kotest" % "kotest-property-jvm" % "6.2.1" % Provided, + "io.kotest" % "kotest-runner-junit6" % "6.2.1" % Test, "com.github.sbt.junit" % "jupiter-interface" % JupiterKeys.jupiterVersion.value % Test ), crossPaths := false, From 0a8522a8f78a82c18f65f1fbe1da0bacce0004e2 Mon Sep 17 00:00:00 2001 From: SimY4 Date: Sun, 21 Jun 2026 12:14:40 +1000 Subject: [PATCH 2/2] Bump Kotlin version. --- build.sbt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.sbt b/build.sbt index ddf661c..a0e7619 100644 --- a/build.sbt +++ b/build.sbt @@ -185,11 +185,11 @@ lazy val kotest = (project in file("kotest")) ), crossPaths := false, autoScalaLibrary := false, - kotlinVersion := "2.2.21", + kotlinVersion := "2.3.10", kotlincOptions ++= Seq( "-progressive", - "-language-version=2.2", - "-api-version=2.2", + "-language-version=2.3", + "-api-version=2.3", "-Xexplicit-api=strict", "-Werror" ),