@@ -36,14 +36,14 @@ object ScalatestBuild {
36
36
37
37
// To temporarily switch sbt to a different Scala version:
38
38
// > ++ 2.10.5
39
- lazy val supportedScalaVersions = List (" 2.12.8" , " 2.11.12" , " 2.10.7" , " 2.13.0-M5 " )
39
+ lazy val supportedScalaVersions = List (" 2.12.8" , " 2.11.12" , " 2.10.7" , " 2.13.0-RC1 " )
40
40
41
- val releaseVersion = " 3.1.0-SNAP8 "
41
+ val releaseVersion = " 3.1.0-SNAP9 "
42
42
43
43
val previousReleaseVersion = " 3.0.5"
44
44
45
- val plusJUnitVersion = " 1.0.0-SNAP4 "
46
- val plusTestNGVersion = " 1.0.0-SNAP3 "
45
+ val plusJUnitVersion = " 1.0.0-SNAP5 "
46
+ val plusTestNGVersion = " 1.0.0-SNAP4 "
47
47
val pegdownVersion = " 1.4.2"
48
48
49
49
val githubTag = " release-3.1.0" // for scaladoc source urls
@@ -174,7 +174,7 @@ object ScalatestBuild {
174
174
175
175
def scalaXmlDependency (theScalaVersion : String ): Seq [ModuleID ] =
176
176
CrossVersion .partialVersion(theScalaVersion) match {
177
- case Some ((2 , scalaMajor)) if scalaMajor >= 11 => Seq (" org.scala-lang.modules" %% " scala-xml" % " 1.1 .0" )
177
+ case Some ((2 , scalaMajor)) if scalaMajor >= 11 => Seq (" org.scala-lang.modules" %% " scala-xml" % " 1.2 .0" )
178
178
case other => Seq .empty
179
179
}
180
180
@@ -214,7 +214,7 @@ object ScalatestBuild {
214
214
Seq (
215
215
// We'll do without scala-parallel-collections until it catches up with Scala 2.13.0-M4.
216
216
// "org.scala-lang.modules" %% "scala-parallel-collections" % "0.1.2",
217
- " org.scala-lang.modules" %%% " scala-parser-combinators" % " 1.1.1 "
217
+ " org.scala-lang.modules" %%% " scala-parser-combinators" % " 1.1.2 "
218
218
)
219
219
220
220
case Some ((2 , scalaMajor)) if scalaMajor >= 11 =>
@@ -231,7 +231,7 @@ object ScalatestBuild {
231
231
" org.scalatestplus" %% " scalatestplus-junit" % plusJUnitVersion % " test"
232
232
)
233
233
234
- val scalaJSVersion = Option (System .getenv(" SCALAJS_VERSION" )).getOrElse(" 0.6.25 " )
234
+ val scalaJSVersion = Option (System .getenv(" SCALAJS_VERSION" )).getOrElse(" 0.6.27 " )
235
235
236
236
def scalatestJSLibraryDependencies =
237
237
Seq (
0 commit comments