From ed2f3a7ce98d8ae13d197206e4157250a5b31a68 Mon Sep 17 00:00:00 2001 From: Anatolii Kmetiuk Date: Thu, 13 May 2021 16:30:42 +0200 Subject: [PATCH] Upgrade Dotty to 3.0.0 --- README.md | 2 +- build.sbt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 67eebc0..fbced79 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ You must use sbt 1.5.0 or newer; older versions of sbt are not supported. Set up the Scala 3 version: ```scala -scalaVersion := "3.0.0-RC3" +scalaVersion := "3.0.0" ``` ### Getting your project to compile with Scala 3 diff --git a/build.sbt b/build.sbt index b523890..2c9eaac 100644 --- a/build.sbt +++ b/build.sbt @@ -4,5 +4,5 @@ lazy val root = project name := "scala3-example-project", description := "Example sbt project that compiles using Scala 3", version := "0.1.0", - scalaVersion := "3.0.0-RC3" + scalaVersion := "3.0.0" )