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

Commit 3a05a65

Browse files
committed
Set version to 0.4.0 and update README accordingly
1 parent df6b386 commit 3a05a65

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

CONTRIBUTING.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,15 @@ You need the following:
1818
- You should perform your work in its own Git branch.
1919
- Then open a pull request on GitHub, with `master` as base branch.
2020

21+
Have a look at the [Waffle.io board](https://waffle.io/scala/collection-strawman) to
22+
quickly know which issues are ready and which are already in progress.
23+
2124
### Build
2225

2326
- Compile the collections and run the tests:
2427

2528
~~~
26-
>; compile; test
29+
>; compile; test; junit/test
2730
~~~
2831
- Run the memory benchmark:
2932

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Collection-Strawman
22

33
[![Join the chat at https://gitter.im/scala/collection-strawman](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/scala/collection-strawman?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
4+
[![Waffle.io board](https://badge.waffle.io/scala/collection-strawman.svg?label=ready&title=Ready issues)](http://waffle.io/scala/collection-strawman)
45

56
Prototype improvements for Scala collections.
67

@@ -25,18 +26,18 @@ are available. If you see something missing, please
2526
Add the following dependency to your project:
2627

2728
~~~ scala
28-
libraryDependencies += "ch.epfl.scala" %% "collection-strawman" % "0.3.0"
29+
libraryDependencies += "ch.epfl.scala" %% "collection-strawman" % "0.4.0"
2930
~~~
3031

31-
The 0.3.0 version is compatible with Scala 2.13 and Dotty 0.2. Scala 2.12 is also supported
32+
The 0.4.0 version is compatible with Scala 2.13 and Dotty 0.2. Scala 2.12 is also supported
3233
but you might encounter type inference issues with it.
3334

3435
We also automatically publish snapshots on Sonatype:
3536

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

39-
libraryDependencies += "ch.epfl.scala" %% "collection-strawman" % "0.4.0-SNAPSHOT"
40+
libraryDependencies += "ch.epfl.scala" %% "collection-strawman" % "0.5.0-SNAPSHOT"
4041
~~~
4142

4243
### Migrating from the standard collections to the strawman

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dotty in ThisBuild := "0.3.0-RC1"
44

55
val commonSettings = Seq(
66
organization := "ch.epfl.scala",
7-
version := "0.4.0-SNAPSHOT",
7+
version := "0.4.0",
88
scalaVersion := "2.12.3",
99
crossScalaVersions := scalaVersion.value :: "2.13.0-M2" :: dotty.value :: Nil,
1010
scalacOptions ++= Seq("-deprecation", "-feature", "-unchecked", "-language:higherKinds"/*, "-opt:l:classpath"*/),

0 commit comments

Comments
 (0)