File tree Expand file tree Collapse file tree 2 files changed +5
-11
lines changed Expand file tree Collapse file tree 2 files changed +5
-11
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ This library provides some of the new APIs from Scala 2.13 to Scala 2.11 and 2.1
88To use this library, add the following to your build.sbt:
99
1010```
11- libraryDependencies += "org.scala-lang.modules" %% "scala-collection-compat" % "2.1.3 "
11+ libraryDependencies += "org.scala-lang.modules" %% "scala-collection-compat" % "2.1.4 "
1212```
1313
1414Version 2.0.0+ is compatible with Scala 2.13, 2.12, and 2.11.
@@ -52,7 +52,7 @@ The `Collection213Upgrade` rewrite upgrades to the 2.13 collections without the
5252
5353``` scala
5454// build.sbt
55- scalafixDependencies in ThisBuild += " org.scala-lang.modules" %% " scala-collection-migrations" % " 2.1.3 "
55+ scalafixDependencies in ThisBuild += " org.scala-lang.modules" %% " scala-collection-migrations" % " 2.1.4 "
5656addCompilerPlugin(scalafixSemanticdb)
5757scalacOptions ++= List (" -Yrangepos" , " -P:semanticdb:synthetics:on" )
5858```
@@ -71,8 +71,8 @@ To cross-build for 2.12 and 2.11, the rewrite rule introduces a dependency on th
7171
7272``` scala
7373// build.sbt
74- scalafixDependencies in ThisBuild += " org.scala-lang.modules" %% " scala-collection-migrations" % " 2.1.3 "
75- libraryDependencies += " org.scala-lang.modules" %% " scala-collection-compat" % " 2.1.3 "
74+ scalafixDependencies in ThisBuild += " org.scala-lang.modules" %% " scala-collection-migrations" % " 2.1.4 "
75+ libraryDependencies += " org.scala-lang.modules" %% " scala-collection-compat" % " 2.1.4 "
7676addCompilerPlugin(scalafixSemanticdb)
7777scalacOptions ++= List (" -Yrangepos" , " -P:semanticdb:synthetics:on" )
7878```
Original file line number Diff line number Diff line change @@ -14,13 +14,7 @@ lazy val commonSettings = Seq(
1414 |See the NOTICE file distributed with this work for
1515 |additional information regarding copyright ownership.
1616 | """ .stripMargin)),
17- scalaModuleMimaPreviousVersion := {
18- // We need to create a release version first to use MiMa
19- if (sys.env.get(" SCALAJS_VERSION" ).exists(_.startsWith(" 1.0.0" )))
20- None
21- else
22- Some (" 2.1.3" )
23- }
17+ scalaModuleMimaPreviousVersion := Some (" 2.1.4" )
2418)
2519
2620lazy val root = project
You can’t perform that action at this time.
0 commit comments