From fd56e8e1e1d8b5ced9b7cc37cf0eadb8217d91d4 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Fri, 23 Aug 2024 18:38:28 +0200 Subject: [PATCH] Update scala3-library to 3.4.3 (#151) --- README.md | 2 +- build.sbt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 744d37f..bf930e7 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 the Scala 3 version: ```scala -scalaVersion := "3.4.2" +scalaVersion := "3.4.3" ``` ### Getting your project to compile with Scala 3 diff --git a/build.sbt b/build.sbt index 7d84a36..4e8dc96 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.4.2", + scalaVersion := "3.4.3", scalacOptions ++= Seq("-deprecation"), libraryDependencies += "org.scalameta" %% "munit" % "1.0.1" % Test )