Skip to content
This repository was archived by the owner on Dec 22, 2021. It is now read-only.

Commit 7b7f459

Browse files
committed
Set version to 0.8.0
1 parent e287647 commit 7b7f459

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
@@ -26,28 +26,28 @@ are available. If you see something missing, please
2626
Add the following dependency to your project:
2727

2828
~~~ scala
29-
libraryDependencies += "ch.epfl.scala" %% "collection-strawman" % "0.7.0"
30-
libraryDependencies += "ch.epfl.scala" %% "collections-contrib" % "0.7.0" // optional
29+
libraryDependencies += "ch.epfl.scala" %% "collection-strawman" % "0.8.0"
30+
libraryDependencies += "ch.epfl.scala" %% "collections-contrib" % "0.8.0" // optional
3131
~~~
3232

33-
The 0.6.0 version is compatible with Scala 2.13 and Dotty 0.5. Scala 2.12 is also supported
33+
The 0.8.0 version is compatible with Scala 2.13 and Dotty 0.6. Scala 2.12 is also supported
3434
but you might encounter type inference issues with it.
3535

3636
We also automatically publish snapshots on Sonatype:
3737

3838
~~~ scala
3939
resolvers += Resolver.sonatypeRepo("snapshots")
4040

41-
libraryDependencies += "ch.epfl.scala" %% "collection-strawman" % "0.8.0-SNAPSHOT"
41+
libraryDependencies += "ch.epfl.scala" %% "collection-strawman" % "0.9.0-SNAPSHOT"
4242
~~~
4343

4444
The `collections-contrib` artifact provides additional operations on the collections (see the
4545
[Additional operations](#additional-operations) section).
4646

4747
### API Documentation
4848

49-
- [`collection-strawman`](https://static.javadoc.io/ch.epfl.scala/collection-strawman_2.12/0.6.0/index.html)
50-
- [`collections-contrib`](https://static.javadoc.io/ch.epfl.scala/collections-contrib_2.12/0.6.0/index.html)
49+
- [`collection-strawman`](https://static.javadoc.io/ch.epfl.scala/collection-strawman_2.12/0.8.0/index.html)
50+
- [`collections-contrib`](https://static.javadoc.io/ch.epfl.scala/collections-contrib_2.12/0.8.0/index.html)
5151

5252
### Migrating from the standard collections to the strawman
5353

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dotty in ThisBuild := "0.6.0-bin-20171212-9de3905-NIGHTLY"
77

88
val commonSettings = Seq(
99
organization := "ch.epfl.scala",
10-
version := "0.8.0-SNAPSHOT",
10+
version := "0.8.0",
1111
scalaVersion := "2.13.0-M2",
1212
crossScalaVersions := scalaVersion.value :: "2.12.4" :: dotty.value :: Nil,
1313
scalacOptions ++= Seq("-deprecation", "-feature", "-unchecked", "-language:higherKinds"/*, "-opt:l:classpath"*/),

0 commit comments

Comments
 (0)