Skip to content

Commit 36b36a3

Browse files
authored
Merge pull request #204 from szeiger/wip/rc2-update
Update for Scala 2.13.0-RC2
2 parents 2f821c3 + b09529a commit 36b36a3

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
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.3.0"
11+
libraryDependencies += "org.scala-lang.modules" %% "scala-collection-compat" % "2.0.0"
1212
```
1313

14-
Version 0.3.0 is compatible with Scala 2.13.0-M5, 2.12 and 2.11.
14+
Version 2.0.0 is compatible with Scala 2.13.0-RC2, 2.12 and 2.11.
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

@@ -53,7 +53,7 @@ The `Collection213Upgrade` rewrite upgrades to the 2.13 collections without the
5353

5454
```scala
5555
// build.sbt
56-
scalafixDependencies in ThisBuild += "org.scala-lang.modules" %% "scala-collection-migrations" % "0.3.0"
56+
scalafixDependencies in ThisBuild += "org.scala-lang.modules" %% "scala-collection-migrations" % "2.0.0"
5757
scalacOptions ++= List("-Yrangepos", "-P:semanticdb:synthetics:on")
5858
```
5959

@@ -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" % "0.3.0"
75-
libraryDependencies += "org.scala-lang.modules" %% "scala-collection-compat" % "0.3.0"
74+
scalafixDependencies in ThisBuild += "org.scala-lang.modules" %% "scala-collection-migrations" % "2.0.0"
75+
libraryDependencies += "org.scala-lang.modules" %% "scala-collection-compat" % "2.0.0"
7676
scalacOptions ++= List("-Yrangepos", "-P:semanticdb:synthetics:on")
7777
```
7878

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ lazy val junit = libraryDependencies += "com.novocode" % "junit-interface" % "0.
4545

4646
lazy val scala211 = "2.11.12"
4747
lazy val scala212 = "2.12.8"
48-
lazy val scala213 = "2.13.0-RC1"
48+
lazy val scala213 = "2.13.0-RC2"
4949

5050
scalaVersionsByJvm in ThisBuild := {
5151
val all = List(scala211, scala212, scala213)

0 commit comments

Comments
 (0)