Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This library provides some of the new APIs from Scala 2.13 to Scala 2.11 and 2.1
To use this library, add the following to your build.sbt:

```
libraryDependencies += "org.scala-lang.modules" %% "scala-collection-compat" % "2.1.2"
libraryDependencies += "org.scala-lang.modules" %% "scala-collection-compat" % "2.1.3"
```

Version 2.0.0+ is compatible with Scala 2.13, 2.12, and 2.11.
Expand Down Expand Up @@ -52,7 +52,7 @@ The `Collection213Upgrade` rewrite upgrades to the 2.13 collections without the

```scala
// build.sbt
scalafixDependencies in ThisBuild += "org.scala-lang.modules" %% "scala-collection-migrations" % "2.1.1"
scalafixDependencies in ThisBuild += "org.scala-lang.modules" %% "scala-collection-migrations" % "2.1.3"
addCompilerPlugin(scalafixSemanticdb)
scalacOptions ++= List("-Yrangepos", "-P:semanticdb:synthetics:on")
```
Expand All @@ -71,8 +71,8 @@ To cross-build for 2.12 and 2.11, the rewrite rule introduces a dependency on th

```scala
// build.sbt
scalafixDependencies in ThisBuild += "org.scala-lang.modules" %% "scala-collection-migrations" % "2.1.1"
libraryDependencies += "org.scala-lang.modules" %% "scala-collection-compat" % "2.1.2"
scalafixDependencies in ThisBuild += "org.scala-lang.modules" %% "scala-collection-migrations" % "2.1.3"
libraryDependencies += "org.scala-lang.modules" %% "scala-collection-compat" % "2.1.3"
addCompilerPlugin(scalafixSemanticdb)
scalacOptions ++= List("-Yrangepos", "-P:semanticdb:synthetics:on")
```
Expand Down
8 changes: 1 addition & 7 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,7 @@ lazy val commonSettings = Seq(
|See the NOTICE file distributed with this work for
|additional information regarding copyright ownership.
|""".stripMargin)),
scalaModuleMimaPreviousVersion := {
// We need to create a release version first to use MiMa
if(sys.env.get("SCALAJS_VERSION").exists(_.startsWith("1.0.0-")))
None
else
Some("2.1.1")
}
scalaModuleMimaPreviousVersion := Some("2.1.3")
)

lazy val root = project
Expand Down