Skip to content

Commit 1f591c4

Browse files
authored
Merge pull request #301 from scala/update-readme-2.1.4
Refer to version 2.1.4 instead of 2.1.3
2 parents 3d98110 + 5b2393f commit 1f591c4

File tree

2 files changed

+5
-11
lines changed

2 files changed

+5
-11
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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
88
To 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

1414
Version 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"
5656
addCompilerPlugin(scalafixSemanticdb)
5757
scalacOptions ++= 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"
7676
addCompilerPlugin(scalafixSemanticdb)
7777
scalacOptions ++= List("-Yrangepos", "-P:semanticdb:synthetics:on")
7878
```

build.sbt

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff 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

2620
lazy val root = project

0 commit comments

Comments
 (0)