Skip to content

Commit

Permalink
add support for Scala 3.0.0-RC1
Browse files Browse the repository at this point in the history
  • Loading branch information
Sciss committed Feb 18, 2021
1 parent 193cdb6 commit 467882f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ lazy val deps = new {
val serial = "2.0.1"
}
val test = new {
val scalaTest = "3.2.3"
val scalaTest = "3.2.4"
}
}

lazy val commonJvmSettings = Seq(
crossScalaVersions := Seq("3.0.0-M3", "2.13.4", "2.12.12"),
crossScalaVersions := Seq("3.0.0-RC1", "2.13.4", "2.12.13"),
)

// sonatype plugin requires that these are in global
Expand Down
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.8.1") // compatibility testing
addSbtPlugin("ch.epfl.lamp" % "sbt-dotty" % "0.5.2") // cross-compile for dotty
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.4.0") // cross-compile for scala.js
addSbtPlugin("ch.epfl.lamp" % "sbt-dotty" % "0.5.3") // cross-compile for dotty
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.5.0") // cross-compile for scala.js
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.0.0")

0 comments on commit 467882f

Please sign in to comment.