From d840b9c774fcfcc7c9b8671489bdf88e84048567 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 8 Nov 2022 23:06:03 +0000 Subject: [PATCH] Update scala3-library to 3.2.1 --- README.md | 4 ++-- build.sbt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2a11e45..5158320 100644 --- a/README.md +++ b/README.md @@ -32,10 +32,10 @@ You must use sbt 1.5.5 or newer; older versions of sbt are not supported. ### build.sbt -Set up the Scala 3 version: +Set the Scala 3 version: ```scala -scalaVersion := "3.2.0" +scalaVersion := "3.2.1" ``` ### Getting your project to compile with Scala 3 diff --git a/build.sbt b/build.sbt index 1d8fd12..1172200 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.2.0", + scalaVersion := "3.2.1", scalacOptions ++= Seq("-deprecation"), libraryDependencies += "org.scalameta" %% "munit" % "0.7.29" % Test )