@@ -4,7 +4,7 @@ This Scala standard module contains the package
44` scala.collection.parallel ` , with all of the parallel collections that
55used to be part of the Scala standard library (in Scala 2.10 through 2.12).
66
7- For Scala 2.13 and Scala 3 , this module is a separate JAR that can be
7+ For Scala 3 and Scala 2.13 , this module is a separate JAR that can be
88omitted from projects that do not use parallel collections.
99
1010## Documentation
@@ -24,7 +24,7 @@ To depend on scala-parallel-collections in sbt, add this to your `build.sbt`:
2424
2525``` scala
2626libraryDependencies +=
27- " org.scala-lang.modules" %% " scala-parallel-collections" % " 1.0.2 "
27+ " org.scala-lang.modules" %% " scala-parallel-collections" % " 1.0.3 "
2828```
2929
3030In your code, adding this import:
@@ -37,7 +37,7 @@ will enable use of the `.par` method as in earlier Scala versions.
3737
3838### Cross-building: dependency
3939
40- This module is published only for the Scala 2.13 and 3.0 series , so in a
40+ This module is published only for the Scala 3 and 2.13 , so in a
4141cross-built project, the dependency should take this form:
4242
4343``` scala
@@ -46,7 +46,7 @@ libraryDependencies ++= {
4646 case Some ((2 , major)) if major <= 12 =>
4747 Seq ()
4848 case _ =>
49- Seq (" org.scala-lang.modules" %% " scala-parallel-collections" % " 1.0.2 " )
49+ Seq (" org.scala-lang.modules" %% " scala-parallel-collections" % " 1.0.3 " )
5050 }
5151}
5252```
0 commit comments