@@ -4,7 +4,7 @@ This Scala standard module contains the package
4
4
` scala.collection.parallel ` , with all of the parallel collections that
5
5
used to be part of the Scala standard library.
6
6
7
- As of Scala 2.13.0-M1 , this module is a separate JAR that can be
7
+ For Scala 2.13, this module is a separate JAR that can be
8
8
omitted from projects that do not use parallel collections.
9
9
10
10
## Maintenance status
@@ -13,19 +13,13 @@ This module is maintained by the Scala team at Lightbend. If you are
13
13
interested in participating, please jump right in on issues and pull
14
14
requests.
15
15
16
- Modest, targeted improvements to the existing codebase are welcome at
17
- any time. More fundamental or sweeping changes should probably wait
18
- until after the
19
- [ Scala 2.13 collections rework] ( http://www.scala-lang.org/blog/2017/02/28/collections-rework.html )
20
- is closer to final form.
21
-
22
16
## Usage
23
17
24
18
To depend on scala-parallel-collections in sbt, add this to your ` build.sbt ` :
25
19
26
20
```
27
21
libraryDependencies +=
28
- "org.scala-lang.modules" %% "scala-parallel-collections" % "0.1.2 "
22
+ "org.scala-lang.modules" %% "scala-parallel-collections" % "0.2.0 "
29
23
```
30
24
31
25
In your code, adding this import:
@@ -45,7 +39,7 @@ cross-built project, the dependency should take this form:
45
39
libraryDependencies ++= {
46
40
CrossVersion .partialVersion(scalaVersion.value) match {
47
41
case Some ((2 , major)) if major >= 13 =>
48
- Seq (" org.scala-lang.modules" %% " scala-parallel-collections" % " 0.1.2 " )
42
+ Seq (" org.scala-lang.modules" %% " scala-parallel-collections" % " 0.2.0 " )
49
43
case _ =>
50
44
Seq ()
51
45
}
@@ -66,7 +60,7 @@ You may able to avoid the problem by directly constructing your
66
60
parallel collections rather than going through ` .par ` . For other
67
61
possible workarounds, see
68
62
https://github.com/scala/scala-parallel-collections/issues/22 ,
69
- which is still under discussion (as of April 2017) .
63
+ which is still under discussion.
70
64
71
65
## Releasing
72
66
0 commit comments