Skip to content

Commit

Permalink
Merge pull request #24 from com-lihaoyi/support-scala-2.11
Browse files Browse the repository at this point in the history
Reintroduce support for Scala 2.11
  • Loading branch information
lolgab authored Mar 24, 2021
2 parents d744cf2 + ac472d0 commit b7276a9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@ import de.tobiasroeser.mill.vcs.version.VcsVersion

val dottyCustomVersion = sys.props.get("dottyVersion")

val scala211 = "2.11.12"
val scala212 = "2.12.13"
val scala213 = "2.13.4"
val scala3 = "3.0.0-RC1"

val scalaVersions = scala213 :: scala212 :: scala3 :: dottyCustomVersion.toList
val scalaVersions = scala213 :: scala212 :: scala211 :: scala3 :: dottyCustomVersion.toList
val scala2Versions = scalaVersions.filter(_.startsWith("2."))

val scalaJSVersions = for {
Expand Down

0 comments on commit b7276a9

Please sign in to comment.