@@ -6,8 +6,8 @@ lazy val root = project.in(file(".")).
6
6
name := " Scala.js DOM"
7
7
8
8
crossScalaVersions in ThisBuild := {
9
- if (scalaJSVersion.startsWith(" 1." )) Seq (" 2.12.8 " , " 2.11.12" , " 2.13.0 " )
10
- else Seq (" 2.12.8 " , " 2.11.12" , " 2.10.7" , " 2.13.0 " )
9
+ if (scalaJSVersion.startsWith(" 1." )) Seq (" 2.12.10 " , " 2.11.12" , " 2.13.1 " )
10
+ else Seq (" 2.12.10 " , " 2.11.12" , " 2.10.7" , " 2.13.1 " )
11
11
}
12
12
scalaVersion in ThisBuild := crossScalaVersions.value.head
13
13
@@ -42,7 +42,7 @@ def hasNewCollections(version: String): Boolean = {
42
42
}
43
43
44
44
/** Returns the appropriate subdirectory of `sourceDir` depending on whether
45
- * the `scalaV` uses the new collections (introduced in 2.13.0-M4 ) or not.
45
+ * the `scalaV` uses the new collections (introduced in 2.13) or not.
46
46
*/
47
47
def collectionsEraDependentDirectory (scalaV : String , sourceDir : File ): File =
48
48
if (hasNewCollections(scalaV)) sourceDir / " scala-new-collections"
@@ -102,7 +102,7 @@ lazy val readme = ScalatexReadme(
102
102
source = " Index" ,
103
103
autoResources = Seq (" example-opt.js" )
104
104
).settings(
105
- scalaVersion := " 2.12.8 " ,
105
+ scalaVersion := " 2.12.10 " ,
106
106
scalacOptions ++= Seq (" -deprecation" , " -feature" , " -Xfatal-warnings" ),
107
107
(resources in Compile ) += (fullOptJS in (example, Compile )).value.data
108
108
)
0 commit comments