From 600695bc6a982a22b69d9641a1e43566fe1ded33 Mon Sep 17 00:00:00 2001 From: "nmcb-scala-steward[bot]" <157481287+nmcb-scala-steward[bot]@users.noreply.github.com> Date: Thu, 22 Jan 2026 17:02:17 +0000 Subject: [PATCH 1/2] Update scala3-library to 3.8.1 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index ef02b74..abb1cd2 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ lazy val root = project.in(file(".")) .settings( name := "proust" , version := "0.1.0" - , scalaVersion := "3.7.4" + , scalaVersion := "3.8.1" , libraryDependencies += "com.github.sbt" % "junit-interface" % "0.13.3" % "test" , scalacOptions := List("-encoding", "utf8", "-Xfatal-warnings", "-deprecation", "-unchecked"), Test / classLoaderLayeringStrategy := ClassLoaderLayeringStrategy.Flat From 7837e053651d5f13dc9a947f4a9903c1b1a8179b Mon Sep 17 00:00:00 2001 From: nmcb Date: Thu, 22 Jan 2026 19:06:54 +0100 Subject: [PATCH 2/2] fix scala 3.8.1 deprecations --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index abb1cd2..af5a0d3 100644 --- a/build.sbt +++ b/build.sbt @@ -4,6 +4,6 @@ lazy val root = , version := "0.1.0" , scalaVersion := "3.8.1" , libraryDependencies += "com.github.sbt" % "junit-interface" % "0.13.3" % "test" - , scalacOptions := List("-encoding", "utf8", "-Xfatal-warnings", "-deprecation", "-unchecked"), + , scalacOptions := List("-encoding", "utf8", "-Werror", "-deprecation", "-unchecked"), Test / classLoaderLayeringStrategy := ClassLoaderLayeringStrategy.Flat )