Skip to content

Commit

Permalink
Merge pull request #181 from Kevin-Lee/task/180/support-scala-3.0.0-M2
Browse files Browse the repository at this point in the history
Close #180 - Support Scala 3.0.0-M2
  • Loading branch information
kevin-lee committed Dec 2, 2020
2 parents c3d08d4 + e4ce027 commit fa6f571
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Expand Up @@ -22,6 +22,7 @@ jobs:
- { name: 'Scala 2', version: "2.12.12", binary-version: "2.12", java-version: "11" }
- { name: 'Scala 2', version: "2.13.3", binary-version: "2.13", java-version: "11" }
- { name: 'Scala 3', version: "3.0.0-M1", binary-version: "3.0.0-M1", java-version: "11" }
- { name: 'Scala 3', version: "3.0.0-M2", binary-version: "3.0.0-M2", java-version: "11" }

steps:
- uses: actions/checkout@v2
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Expand Up @@ -59,7 +59,8 @@ jobs:
- { name: "Scala 2", version: "2.11.12", binary-version: "2.11", java-version: "8" }
- { name: "Scala 2", version: "2.12.12", binary-version: "2.12", java-version: "11" }
- { name: "Scala 2", version: "2.13.3", binary-version: "2.13", java-version: "11" }
- { name: "Scala 3", version: "3.0.0-M1", binary-version: "3.0.0-M1", java-version: "11" }
- { name: "Scala 3", version: "3.0.0-M1", binary-version: "3.0.0-M1", java-version: "11" }
- { name: 'Scala 3', version: "3.0.0-M2", binary-version: "3.0.0-M2", java-version: "11" }

steps:
- uses: actions/checkout@v2
Expand Down
8 changes: 4 additions & 4 deletions build.sbt
Expand Up @@ -4,7 +4,7 @@ import just.semver.SemVer
import SemVer.{Major, Minor}
import microsites.ConfigYml

val DottyVersion = "3.0.0-M1"
val DottyVersions = Seq("3.0.0-M1", "3.0.0-M2")
val ProjectScalaVersion = "2.13.3"

val removeDottyIncompatible: ModuleID => Boolean =
Expand All @@ -14,9 +14,9 @@ val removeDottyIncompatible: ModuleID => Boolean =
m.name == "kind-projector" ||
m.name == "mdoc"

val CrossScalaVersions: Seq[String] = Seq(
"2.10.7", "2.11.12", "2.12.12", "2.13.3", DottyVersion
).distinct
val CrossScalaVersions: Seq[String] = (Seq(
"2.10.7", "2.11.12", "2.12.12", "2.13.3"
) ++ DottyVersions).distinct

val GitHubUsername = "Kevin-Lee"
val RepoName = "just-fp"
Expand Down

0 comments on commit fa6f571

Please sign in to comment.