Skip to content

Commit 7b08a59

Browse files
committed
bump version in readme
1 parent e71dc97 commit 7b08a59

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ 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" % "0.2.1"
11+
libraryDependencies += "org.scala-lang.modules" %% "scala-collection-compat" % "0.2.2"
1212
```
1313

14-
Version 0.2.1 is compatible with Scala 2.13.0-M5. For Scala 2.13.0-M4 you should use version 0.1.1.
14+
Version 0.2.2 is compatible with Scala 2.13.0-M5. For Scala 2.13.0-M4 you should use version 0.1.1.
1515

1616
Note that there are multiple ways to cross-build projects, see https://github.com/scala/collection-strawman/wiki/FAQ#how-do-i-cross-build-my-project-against-scala-212-and-scala-213.
1717

@@ -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" % "0.2.1"
55+
scalafixDependencies in ThisBuild += "org.scala-lang.modules" %% "scala-collection-migrations" % "0.2.2"
5656
scalacOptions ++= List("-Yrangepos", "-P:semanticdb:synthetics:on")
5757
```
5858

@@ -70,8 +70,8 @@ To cross-build for 2.12 and 2.11, the rewrite rule introduces a dependency on th
7070

7171
```scala
7272
// build.sbt
73-
scalafixDependencies in ThisBuild += "org.scala-lang.modules" %% "scala-collection-migrations" % "0.2.1"
74-
libraryDependencies += "org.scala-lang.modules" %% "scala-collection-compat" % "0.2.1"
73+
scalafixDependencies in ThisBuild += "org.scala-lang.modules" %% "scala-collection-migrations" % "0.2.2"
74+
libraryDependencies += "org.scala-lang.modules" %% "scala-collection-compat" % "0.2.2"
7575
scalacOptions ++= List("-Yrangepos", "-P:semanticdb:synthetics:on")
7676
```
7777

0 commit comments

Comments
 (0)