Skip to content

Commit cac5ea4

Browse files
authored
Update README.md
1 parent 0f6a1f5 commit cac5ea4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This Scala standard module contains the package
44
`scala.collection.parallel`, with all of the parallel collections that
55
used 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
88
omitted 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
2626
libraryDependencies +=
27-
"org.scala-lang.modules" %% "scala-parallel-collections" % "1.0.2"
27+
"org.scala-lang.modules" %% "scala-parallel-collections" % "1.0.3"
2828
```
2929

3030
In 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
4141
cross-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

Comments
 (0)