Skip to content

Commit dfbdb9f

Browse files
committed
bump version in readme
1 parent b8cea88 commit dfbdb9f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -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" % "0.2.0"
22+
"org.scala-lang.modules" %% "scala-parallel-collections" % "1.0.0-RC1"
2323
```
2424

2525
In your code, adding this import:
@@ -32,7 +32,7 @@ will enable use of the `.par` method as in earlier Scala versions.
3232

3333
### Scaladoc
3434

35-
Here is the [full Scaladoc](https://static.javadoc.io/org.scala-lang.modules/scala-parallel-collections_2.13/0.2.0/scala/collection/index.html).
35+
Here is the [full Scaladoc](https://static.javadoc.io/org.scala-lang.modules/scala-parallel-collections_2.13/1.0.0-RC1/scala/collection/index.html).
3636

3737
### Cross-building: dependency
3838

@@ -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" % "0.2.0")
48+
Seq("org.scala-lang.modules" %% "scala-parallel-collections" % "1.0.0-RC1")
4949
}
5050
}
5151
```

0 commit comments

Comments
 (0)