Skip to content

Commit ecee111

Browse files
committed
Merge branch 'scala-upgrade' of https://github.com/joan38/scalatest into 3.1.0-SNAP13
2 parents f0db7bb + 2676a0e commit ecee111

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ scala:
33
- 2.10.7
44
- 2.11.12
55
- 2.12.8
6-
# - 2.13.0-M2
6+
- 2.13.0
77

88
jdk:
99
- oraclejdk8

project/scalatest.scala

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ object ScalatestBuild {
3535

3636
// To enable deprecation warnings on the fly
3737
// set scalacOptions in ThisBuild ++= Seq("-unchecked", "-deprecation")
38-
3938
// To temporarily switch sbt to a different Scala version:
4039
// > ++ 2.10.5
41-
lazy val supportedScalaVersions = List("2.12.8", "2.11.12", "2.10.7", "2.13.0-RC3")
40+
41+
lazy val supportedScalaVersions = List("2.13.0", "2.12.8", "2.11.12", "2.10.7")
4242

4343
val releaseVersion = "3.1.0-SNAP12"
4444

@@ -216,15 +216,14 @@ object ScalatestBuild {
216216
// if scala 2.13+ is used, add dependency on scala-parallel-collections module
217217
case Some((2, scalaMajor)) if scalaMajor >= 13 =>
218218
Seq(
219-
// We'll do without scala-parallel-collections until it catches up with Scala 2.13.0-M4.
220-
//"org.scala-lang.modules" %% "scala-parallel-collections" % "0.1.2",
219+
"org.scala-lang.modules" %% "scala-parallel-collections" % "0.1.2",
221220
"org.scala-lang.modules" %%% "scala-parser-combinators" % "1.1.2"
222221
)
223222

224223
case Some((2, scalaMajor)) if scalaMajor >= 11 =>
225224
Seq("org.scala-lang.modules" %%% "scala-parser-combinators" % "1.1.1")
226225

227-
case other =>
226+
case _ =>
228227
Seq.empty
229228
}
230229
}

0 commit comments

Comments
 (0)