Skip to content

Commit 7c51c12

Browse files
authored
Merge pull request #218 from retronym/topic/readme
Update readme with link to latest release
2 parents a425e4f + 08338e1 commit 7c51c12

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

README.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,16 @@
1-
# scala-async [![Build Status](https://travis-ci.org/scala/scala-async.svg?branch=master)](https://travis-ci.org/scala/scala-async) [<img src="https://img.shields.io/maven-central/v/org.scala-lang.modules/scala-async_2.12.svg?label=latest%20release%20for%202.12">](http://search.maven.org/#search%7Cga%7C1%7Cg%3Aorg.scala-lang.modules%20a%3Ascala-async_2.12)
1+
# scala-async [![Build Status](https://travis-ci.org/scala/scala-async.svg?branch=master)](https://travis-ci.org/scala/scala-async) [<img src="https://img.shields.io/maven-central/v/org.scala-lang.modules/scala-async_2.12.svg?label=latest%20release%20for%202.12">](http://search.maven.org/#search%7Cga%7C1%7Cg%3Aorg.scala-lang.modules%20a%3Ascala-async_2.12) [<img src="https://img.shields.io/maven-central/v/org.scala-lang.modules/scala-async_2.13.0-RC1.svg?label=latest%20release%20for%202.13.0-RC1">](http://search.maven.org/#search%7Cga%7C1%7Cg%3Aorg.scala-lang.modules%20a%3Ascala-async_2.13.0-RC1)
22

33
## Supported Scala versions
44

5-
This branch (version series 0.10.x) targets Scala 2.12 and 2.13.
6-
7-
Support for Scala 2.11 is [on a branch](https://github.com/scala/scala-async/tree/2.11.x).
8-
9-
Support for Scala 2.10 is [on a branch](https://github.com/scala/scala-async/tree/2.10.x).
5+
This branch (version series 0.10.x) targets Scala 2.12 and 2.13. `scala-async` us no longer maintained for older versions.
106

117
## Quick start
128

139
To include scala-async in an existing project use the library published on Maven Central.
1410
For sbt projects add the following to your build definition - build.sbt or project/Build.scala:
1511

1612
```scala
17-
libraryDependencies += "org.scala-lang.modules" %% "scala-async" % "0.9.7"
13+
libraryDependencies += "org.scala-lang.modules" %% "scala-async" % "0.10.0"
1814
```
1915

2016
For Maven projects add the following to your <dependencies> (make sure to use the correct Scala version suffix

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ scalaVersionsByJvm in ThisBuild := {
1717
name := "scala-async"
1818
repoName := "async"
1919

20-
version := "0.10.0-SNAPSHOT"
20+
version := "0.10.1-SNAPSHOT"
2121

2222
libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value % "provided"
2323
libraryDependencies += "org.scala-lang" % "scala-compiler" % scalaVersion.value % "test" // for ToolBox

0 commit comments

Comments
 (0)