From e4d4835eeacff2391fca66c1aab38e808c3d1fb1 Mon Sep 17 00:00:00 2001 From: Scalameta Bot Date: Mon, 23 Sep 2024 01:09:31 +0000 Subject: [PATCH 1/3] Update sbt to 1.10.2 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 04267b14af..0b699c3052 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.9.9 +sbt.version=1.10.2 From f03dd99e723760430dd50f2aecdaafcf548a2f13 Mon Sep 17 00:00:00 2001 From: Tomasz Godzik Date: Mon, 23 Sep 2024 17:32:57 +0200 Subject: [PATCH 2/3] chore: Also update Scala 2.13.x --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index ad7224be98..c20b538b74 100644 --- a/build.sbt +++ b/build.sbt @@ -12,7 +12,7 @@ def localSnapshotVersion: String = s"$parseTagVersion-SNAPSHOT" def isCI = System.getenv("CI") != null def scala212 = "2.12.20" -def scala213 = "2.13.13" +def scala213 = "2.13.14" inThisBuild(List( version ~= { dynVer => From 2ef6e90cf24e2fed464c92984f8b6468108f5063 Mon Sep 17 00:00:00 2001 From: Tomasz Godzik Date: Mon, 23 Sep 2024 17:54:56 +0200 Subject: [PATCH 3/3] chore: Revert jline to avoid issues with native image --- build.sbt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.sbt b/build.sbt index c20b538b74..7aadb191cb 100644 --- a/build.sbt +++ b/build.sbt @@ -35,6 +35,8 @@ inThisBuild(List( libraryDependencies ++= List(munit.value % Test, scalacheck % Test, scalametaTestkit % Test), testFrameworks += new TestFramework("munit.Framework"), + // causes native image issues + dependencyOverrides += "org.jline" % "jline" % "3.23.0", )) name := "scalafmtRoot"