Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ lazy val commonSettings =
version.get.replace(".*", "-SNAPSHOT")
}
},
crossScalaVersions := Seq(currentScalaVersion, "2.12.12", "2.11.12"),
crossScalaVersions := Seq(currentScalaVersion, "2.12.12", "2.11.12", "3.0.0-M3"),
scalafmtOnCompile := true,
scalacOptions ++= Seq(
"-unchecked",
Expand All @@ -44,6 +44,8 @@ lazy val commonSettings =
Seq("-Xsource:2.12", "-Ypartial-unification")
case Some((2, 12)) =>
Seq("-Ypartial-unification")
case Some((3, _)) =>
Seq("-source:3.0-migration", "-explain", "-explain-types")
case _ =>
Nil
}
Expand Down
2 changes: 2 additions & 0 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.2")

addSbtPlugin("ch.epfl.lamp" % "sbt-dotty" % "0.5.1")
2 changes: 1 addition & 1 deletion version.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# The version is inferred by shipkit-auto-version Gradle plugin
# More: https://github.com/shipkit/shipkit-auto-version
version=1.16.*
version=1.17.*