22
33This Scala standard module contains the package
44` scala.collection.parallel ` , with all of the parallel collections that
5- used to be part of the Scala standard library.
5+ used to be part of the Scala standard library (in Scala 2.10 through 2.12) .
66
7- For Scala 2.13, this module is a separate JAR that can be
7+ For Scala 2.13 and Scala 3 , this module is a separate JAR that can be
88omitted from projects that do not use parallel collections.
99
1010## Maintenance status
@@ -19,7 +19,7 @@ To depend on scala-parallel-collections in sbt, add this to your `build.sbt`:
1919
2020``` scala
2121libraryDependencies +=
22- " org.scala-lang.modules" %% " scala-parallel-collections" % " 1.0.0-RC1 "
22+ " org.scala-lang.modules" %% " scala-parallel-collections" % " 1.0.0"
2323```
2424
2525In your code, adding this import:
@@ -36,7 +36,7 @@ Here is the [full Scaladoc](https://static.javadoc.io/org.scala-lang.modules/sca
3636
3737### Cross-building: dependency
3838
39- This module is published only for the Scala 2.13.x series, so in a
39+ This module is published only for the Scala 2.13 and 3.0 series, so in a
4040cross-built project, the dependency should take this form:
4141
4242``` scala
@@ -45,7 +45,7 @@ libraryDependencies ++= {
4545 case Some ((2 , major)) if major <= 12 =>
4646 Seq ()
4747 case _ =>
48- Seq (" org.scala-lang.modules" %% " scala-parallel-collections" % " 1.0.0-RC1 " )
48+ Seq (" org.scala-lang.modules" %% " scala-parallel-collections" % " 1.0.0" )
4949 }
5050}
5151```
@@ -57,7 +57,7 @@ community build, etc).
5757### Cross-building: source compatibility
5858
5959Using ` .par ` is problematic in a cross-built project, since in Scala
60- 2.13 the ` CollectionConverters._ ` import shown above is necessary, but
60+ 2.13+ the ` CollectionConverters._ ` import shown above is necessary, but
6161in earlier Scala versions, that import will not compile.
6262
6363You may able to avoid the problem by directly constructing your
0 commit comments