diff --git a/README.md b/README.md index a8a39ae..fc1ee50 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ sbt.version=1.12.4 Set the Scala 3 version: ```scala -scalaVersion := "3.8.1" +scalaVersion := "3.8.2" ``` Note that as of Scala 3.8, you need JDK 17 or higher. diff --git a/build.sbt b/build.sbt index f1ae2ad..f5b2ee7 100644 --- a/build.sbt +++ b/build.sbt @@ -4,7 +4,7 @@ lazy val root = project name := "scala3-example-project", description := "Example sbt project that compiles using Scala 3", version := "0.1.0", - scalaVersion := "3.8.1", + scalaVersion := "3.8.2", scalacOptions ++= Seq("-deprecation"), libraryDependencies += "org.scalameta" %% "munit" % "1.2.2" % Test )