Skip to content

Commit adaa5c1

Browse files
committed
prepare for 0.2.0 release for Scala 2.13.0-RC1
1 parent 3647df7 commit adaa5c1

File tree

2 files changed

+6
-12
lines changed

2 files changed

+6
-12
lines changed

README.md

Lines changed: 4 additions & 10 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.
66

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
88
omitted from projects that do not use parallel collections.
99

1010
## Maintenance status
@@ -13,19 +13,13 @@ This module is maintained by the Scala team at Lightbend. If you are
1313
interested in participating, please jump right in on issues and pull
1414
requests.
1515

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-
2216
## Usage
2317

2418
To depend on scala-parallel-collections in sbt, add this to your `build.sbt`:
2519

2620
```
2721
libraryDependencies +=
28-
"org.scala-lang.modules" %% "scala-parallel-collections" % "0.1.2"
22+
"org.scala-lang.modules" %% "scala-parallel-collections" % "0.2.0"
2923
```
3024

3125
In your code, adding this import:
@@ -45,7 +39,7 @@ cross-built project, the dependency should take this form:
4539
libraryDependencies ++= {
4640
CrossVersion.partialVersion(scalaVersion.value) match {
4741
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")
4943
case _ =>
5044
Seq()
5145
}
@@ -66,7 +60,7 @@ You may able to avoid the problem by directly constructing your
6660
parallel collections rather than going through `.par`. For other
6761
possible workarounds, see
6862
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.
7064

7165
## Releasing
7266

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import ScalaModulePlugin._
22

3-
version in ThisBuild := "0.1.3-SNAPSHOT"
3+
version in ThisBuild := "0.2.1-SNAPSHOT"
44

55
resolvers in ThisBuild += "scala-integration" at "https://scala-ci.typesafe.com/artifactory/scala-integration/"
66

77
scalaVersionsByJvm in ThisBuild := {
8-
val v213 = "2.13.0-pre-041fc23" // Apr 2
8+
val v213 = "2.13.0-RC1"
99
Map(
1010
8 -> List(v213 -> true),
1111
11 -> List(v213 -> false),

0 commit comments

Comments
 (0)