Skip to content

Commit d7d3aad

Browse files
authored
Merge pull request #140 from SethTisue/post-1.0.0-release
post 1.0.0 release stuff
2 parents 568f063 + bed8ac9 commit d7d3aad

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
This 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
88
omitted 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
2121
libraryDependencies +=
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

2525
In 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
4040
cross-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

5959
Using `.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
6161
in earlier Scala versions, that import will not compile.
6262

6363
You may able to avoid the problem by directly constructing your

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ lazy val core = project.in(file("core"))
1616
// don't run Dottydoc, it errors and isn't needed anyway.
1717
// but we leave `publishArtifact` set to true, otherwise Sonatype won't let us publish
1818
Compile / doc / sources := (if (isDotty.value) Seq() else (Compile / doc/ sources).value),
19-
scalaModuleMimaPreviousVersion := Some("1.0.0-RC1").filterNot(_ => isDotty.value),
19+
scalaModuleMimaPreviousVersion := Some("1.0.0").filterNot(_ => isDotty.value),
2020
)
2121

2222
lazy val junit = project.in(file("junit"))

0 commit comments

Comments
 (0)