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

Commit

Permalink
Set version to 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
julienrf committed Jan 3, 2018
1 parent e287647 commit 7b7f459
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,28 +26,28 @@ are available. If you see something missing, please
Add the following dependency to your project:

~~~ scala
libraryDependencies += "ch.epfl.scala" %% "collection-strawman" % "0.7.0"
libraryDependencies += "ch.epfl.scala" %% "collections-contrib" % "0.7.0" // optional
libraryDependencies += "ch.epfl.scala" %% "collection-strawman" % "0.8.0"
libraryDependencies += "ch.epfl.scala" %% "collections-contrib" % "0.8.0" // optional
~~~

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

We also automatically publish snapshots on Sonatype:

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

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

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

### API Documentation

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

### Migrating from the standard collections to the strawman

Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dotty in ThisBuild := "0.6.0-bin-20171212-9de3905-NIGHTLY"

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

0 comments on commit 7b7f459

Please sign in to comment.