aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2016-10-30 09:18:56 +1100
committerJason Zaugg <jzaugg@gmail.com>2016-10-30 09:18:56 +1100
commitc9a066b9a0033b21012c1c9a127b6519d3e6d3c4 (patch)
treee257b494873b757d317d4495b2abe485ab777dbd
parentef70504bb9597c74ddf4b2cac729bc3d8929d81a (diff)
downloadscala-async-c9a066b9a0033b21012c1c9a127b6519d3e6d3c4.tar.gz
scala-async-c9a066b9a0033b21012c1c9a127b6519d3e6d3c4.tar.bz2
scala-async-c9a066b9a0033b21012c1c9a127b6519d3e6d3c4.zip
Bump to new snapshot version
-rw-r--r--README.md8
-rw-r--r--build.sbt2
2 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index ce1ac90..d50e8a6 100644
--- a/README.md
+++ b/README.md
@@ -4,21 +4,21 @@ Note: this branch targets Scala 2.11.x, support for Scala 2.10.x has been moved
## Quick start
-To include scala-async in an existing project use the library published on Maven Central.
+To include scala-async in an existing project use the library published on Maven Central.
For sbt projects add the following to your build definition - build.sbt or project/Build.scala:
```scala
-libraryDependencies += "org.scala-lang.modules" %% "scala-async" % "0.9.5"
+libraryDependencies += "org.scala-lang.modules" %% "scala-async" % "0.9.6"
```
-For Maven projects add the following to your <dependencies> (make sure to use the correct Scala version prefix, _2.10 or _2.11,
+For Maven projects add the following to your <dependencies> (make sure to use the correct Scala version prefix, _2.10 or _2.11,
to match your project’s Scala version):
```scala
<dependency>
<groupId>org.scala-lang.modules</groupId>
<artifactId>scala-async_2.11</artifactId>
- <version>0.9.5</version>
+ <version>0.9.6</version>
</dependency>
```
diff --git a/build.sbt b/build.sbt
index db99ccb..50059f9 100644
--- a/build.sbt
+++ b/build.sbt
@@ -10,7 +10,7 @@ organization := "org.scala-lang.modules"
name := "scala-async"
-version := "0.9.6-SNAPSHOT"
+version := "0.9.7-SNAPSHOT"
libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value % "provided"