Skip to content

Commit

Permalink
Rolled back to M3, looks like RC1 doesn't have scaladoc properly work…
Browse files Browse the repository at this point in the history
…ing with sbt yet...
  • Loading branch information
j-mie6 committed Mar 5, 2021
1 parent cc3805a commit edafd97
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
fail-fast: false
matrix:
java: [[email protected], [email protected], [email protected]]
scala: [2.12.13, 2.13.5, 3.0.0-RC1]
scala: [2.12.13, 2.13.5, 3.0.0-M3]
experimental: [false]

include:
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ inThisBuild(List(

val scala212Version = "2.12.13"
val scala213Version = "2.13.5"
val scala3Version = "3.0.0-RC1"
val scala3Version = "3.0.0-M3"
val dottyVersion = "0.27.0-RC1"

def usesLib213(major: Long, minor: Long): Boolean = major > 2 || minor >= 13
Expand All @@ -38,7 +38,7 @@ def extraSources(rootSrcFile: File, base: String, version: String): Seq[File] =
case None => Seq.empty
}

def scalaTestDependency(version: String): String = Map("0.27.0-RC1" -> "3.2.2").getOrElse(version, "3.2.5")
def scalaTestDependency(version: String): String = Map("0.27.0-RC1" -> "3.2.2", "3.0.0-M3" -> "3.2.3").getOrElse(version, "3.2.5")

Global / onChangedBuildSource := ReloadOnSourceChanges

Expand Down

0 comments on commit edafd97

Please sign in to comment.