File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ Only the most commonly used APIs are supported; many are missing. Contributions
17
17
To use this library, add the following to your ` build.sbt ` :
18
18
19
19
```
20
- libraryDependencies += "org.scala-lang.modules" %% "scala-collection-compat" % "2.1.6 "
20
+ libraryDependencies += "org.scala-lang.modules" %% "scala-collection-compat" % "2.2.0 "
21
21
```
22
22
23
23
All future versions will remain backwards binary compatible with 2.0.0. (The 1.0.0 release was withdrawn and should not be used.)
@@ -64,7 +64,7 @@ The `Collection213Upgrade` rewrite upgrades to the 2.13 collections without the
64
64
65
65
``` scala
66
66
// build.sbt
67
- scalafixDependencies in ThisBuild += " org.scala-lang.modules" %% " scala-collection-migrations" % " 2.1.6 "
67
+ scalafixDependencies in ThisBuild += " org.scala-lang.modules" %% " scala-collection-migrations" % " 2.2.0 "
68
68
addCompilerPlugin(scalafixSemanticdb)
69
69
scalacOptions ++= List (" -Yrangepos" , " -P:semanticdb:synthetics:on" )
70
70
```
@@ -82,8 +82,8 @@ To cross-build for 2.12 and 2.11, the rewrite rule introduces a dependency on th
82
82
83
83
``` scala
84
84
// build.sbt
85
- scalafixDependencies in ThisBuild += " org.scala-lang.modules" %% " scala-collection-migrations" % " 2.1.6 "
86
- libraryDependencies += " org.scala-lang.modules" %% " scala-collection-compat" % " 2.1.6 "
85
+ scalafixDependencies in ThisBuild += " org.scala-lang.modules" %% " scala-collection-migrations" % " 2.2.0 "
86
+ libraryDependencies += " org.scala-lang.modules" %% " scala-collection-compat" % " 2.2.0 "
87
87
addCompilerPlugin(scalafixSemanticdb)
88
88
scalacOptions ++= List (" -Yrangepos" , " -P:semanticdb:synthetics:on" )
89
89
```
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ lazy val commonSettings = Seq(
14
14
|See the NOTICE file distributed with this work for
15
15
|additional information regarding copyright ownership.
16
16
| """ .stripMargin)),
17
- scalaModuleMimaPreviousVersion := Some (" 2.1.6 " ),
17
+ scalaModuleMimaPreviousVersion := Some (" 2.2.0 " ),
18
18
mimaBinaryIssueFilters ++= {
19
19
import com .typesafe .tools .mima .core ._
20
20
import com .typesafe .tools .mima .core .ProblemFilters ._
You can’t perform that action at this time.
0 commit comments