From c8f04707851156a4fb165074c5768e9f5e1da1f5 Mon Sep 17 00:00:00 2001 From: Jakob Odersky Date: Thu, 1 Apr 2021 14:43:41 +0200 Subject: [PATCH] Bump scala version --- build.sc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.sc b/build.sc index 8f0b568..b08ceb8 100644 --- a/build.sc +++ b/build.sc @@ -5,7 +5,7 @@ import de.tobiasroeser.mill.vcs.version.VcsVersion val dottyVersions = sys.props.get("dottyVersion").toList -val scalaVersions = "2.12.13" :: "2.13.4" :: "2.11.12" :: "3.0.0-RC1" :: dottyVersions +val scalaVersions = "2.12.13" :: "2.13.4" :: "2.11.12" :: "3.0.0-RC2" :: dottyVersions val scala2Versions = scalaVersions.filter(_.startsWith("2.")) val scalaJSVersions = for { @@ -41,8 +41,8 @@ trait PPrintModule extends PublishModule { trait PPrintMainModule extends CrossScalaModule { def millSourcePath = super.millSourcePath / offset def ivyDeps = Agg( - ivy"com.lihaoyi::fansi::0.2.11", - ivy"com.lihaoyi::sourcecode::0.2.4" + ivy"com.lihaoyi::fansi::0.2.12", + ivy"com.lihaoyi::sourcecode::0.2.5" ) def compileIvyDeps = if (crossScalaVersion.startsWith("2")) Agg( @@ -99,7 +99,7 @@ trait PPrintMainModule extends CrossScalaModule { trait PPrintTestModule extends ScalaModule with TestModule { def crossScalaVersion: String def testFrameworks = Seq("utest.runner.Framework") - def ivyDeps = Agg(ivy"com.lihaoyi::utest::0.7.7") + def ivyDeps = Agg(ivy"com.lihaoyi::utest::0.7.8") def offset: os.RelPath = os.rel def millSourcePath = super.millSourcePath / os.up