Skip to content

Commit b213ee2

Browse files
authored
Update README.md
1 parent b962a8a commit b213ee2

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

README.md

+4-2
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" % "0.1.0"
11+
libraryDependencies += "org.scala-lang.modules" %% "scala-collection-compat" % "0.1.1"
1212
```
1313

1414
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.
@@ -31,7 +31,9 @@ With this compatibility library you can also use the 2.13 syntax which uses a co
3131

3232
The 2.13 version consists only of an empty `scala.collection.compat` package object that allows you to write `import scala.collection.compat._` in 2.13.
3333
The 2.11/2.12 version has the compatibility extensions in this package.
34-
It also adds backported version of some new collection types to other `scala.collection` subpackages.
34+
35+
36+
The library also adds backported versions of new collection types, currently `scala.collection.compat.immutable.ArraySeq`. In 2.11/2.12, this type is a new collection implementation. In 2.13, it is an alias for `scala.collection.immutable.ArraySeq`.
3537

3638
## Migration Tool
3739

0 commit comments

Comments
 (0)