Skip to content
This repository was archived by the owner on Jun 23, 2020. It is now read-only.

Commit 338c223

Browse files
authored
Merge pull request #13 from danslapman/master
Test against Scala 2.12.0-M5
2 parents 739ee98 + cf33bfe commit 338c223

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.travis.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,15 @@ script:
1515
- admin/build.sh
1616
scala:
1717
- 2.11.8
18-
- 2.12.0-M4
18+
- 2.12.0-M5
1919
jdk:
2020
- openjdk6
2121
- oraclejdk8
2222
matrix:
2323
exclude:
24-
- scala: 2.12.0-M4
24+
- scala: 2.12.0-M5
2525
jdk: openjdk6
2626
notifications:
2727
email:
2828
29+

README.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
scala-continuations [<img src="https://api.travis-ci.org/scala/scala-continuations.png"/>](https://travis-ci.org/scala/scala-continuations)
22
=========
33

4-
Maintained by @danslapman.
4+
scala-continuations is a library and a compiler plugin for Scala language that provides support for CPS transformations.
55

6-
You may also be interested in https://github.com/scala/async, which covers the most common use case for the continuations plugin.
6+
This library is community-maintained. The lead maintainer is [@danslapman](https://github.com/danslapman).
77

8-
The Scala Delimited Continuations Plugin and Library will continue to ship with Scala 2.11.0.
9-
However, it will no longer be included with Scala 2.12.
8+
You may also be interested in https://github.com/scala/async, which covers the most common use case for the continuations plugin.

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ lazy val commonSettings = scalaModuleSettings ++ Seq(
99
organization := "org.scala-lang.plugins",
1010
version := "1.0.3-SNAPSHOT",
1111
scalaVersion := "2.11.8",
12-
crossScalaVersions := Seq("2.11.8", "2.12.0-M4"),
12+
crossScalaVersions := Seq("2.11.8", "2.12.0-M5"),
1313
snapshotScalaBinaryVersion := "2.11.8",
1414
scalacOptions ++= Seq(
1515
"-deprecation",

0 commit comments

Comments
 (0)