Skip to content

Commit

Permalink
Bump scala version
Browse files Browse the repository at this point in the history
  • Loading branch information
jodersky committed Apr 1, 2021
1 parent 38825ee commit c8f0470
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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(
Expand Down Expand Up @@ -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

Expand Down

0 comments on commit c8f0470

Please sign in to comment.