From 6561e64547815d997e1f9bae6a9b8de64f33a0e7 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Fri, 9 Sep 2022 18:28:45 +0000 Subject: [PATCH] Update scala3-library to 3.2.0 --- README.md | 2 +- build.sbt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index aa8e3b9..1f8d546 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ You must use sbt 1.5.5 or newer; older versions of sbt are not supported. Set up the Scala 3 version: ```scala -scalaVersion := "3.1.1" +scalaVersion := "3.2.0" ``` ### Getting your project to compile with Scala 3 diff --git a/build.sbt b/build.sbt index e617b59..1d8fd12 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.1.3", + scalaVersion := "3.2.0", scalacOptions ++= Seq("-deprecation"), libraryDependencies += "org.scalameta" %% "munit" % "0.7.29" % Test )