You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
14
+
Version 1.0.0 is compatible with Scala 2.13.0-RC1, 2.12 and 2.11.
15
15
16
16
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.
17
17
18
-
Also note that this library has not fully stabilized yet. We expect that new, binary incompatible releases of this library will be published (for 2.11, 2.12) until Scala 2.13 is getting close to its final state. Therefore you might want to avoid adding a dependency on that library to your 2.11 / 2.12 artifacts for the time being.
18
+
Starting with version 1.0.0 backwards binary compatibility is enforced within each major version (i.e. anything prior to 2.0.0 will be compatible).
19
19
20
20
21
21
The 2.13 collections are mostly backwards compatible, but there are some exceptions. For example, the `to` method is used with a type parameter in 2.12:
@@ -52,7 +52,7 @@ The `Collection213Upgrade` rewrite upgrades to the 2.13 collections without the
52
52
53
53
```scala
54
54
// build.sbt
55
-
scalafixDependencies in ThisBuild+="org.scala-lang.modules"%%"scala-collection-migrations"%"0.2.2"
55
+
scalafixDependencies in ThisBuild+="org.scala-lang.modules"%%"scala-collection-migrations"%"1.0.0"
0 commit comments