From 2832cc05486ad0060eb7beaf83298a1377970db9 Mon Sep 17 00:00:00 2001 From: Shai Yallin Date: Sat, 13 Sep 2014 09:32:47 +0300 Subject: [PATCH] updated readme for 2.11 depedencies --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index be8132c..dc54a56 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ We chose to use Twitter's Future implementation rather than Scala's native Futur Getting Started =============== -Future Perfect `0.1.6` is available on Maven Central Repository. The next milestone is `0.1.7-SNAPSHOT` and is available from the Sonatype snapshots repository. +Future Perfect `0.1.9` is available for Scala 2.10 and 2.11 on Maven Central Repository. The next milestone is `0.1.10-SNAPSHOT` and is available from the Sonatype snapshots repository. SBT --- @@ -37,7 +37,7 @@ SBT Simply add the `future-perfect` module to your build settings: ```scala -libraryDependencies += "com.wix" %% "future-perfect" % "0.1.6" +libraryDependencies += "com.wix" %% "future-perfect" % "0.1.19" ``` If you want to evaluate the upcoming snapshot release, add the Sonatype snapshot repository to your resolvers; typically this means adding the following to your `build.sbt` file: @@ -45,7 +45,7 @@ If you want to evaluate the upcoming snapshot release, add the Sonatype snapshot ```scala resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots" -libraryDependencies += "com.wix" %% "future-perfect" % "0.1.7-SNAPSHOT" +libraryDependencies += "com.wix" %% "future-perfect" % "0.1.10-SNAPSHOT" ``` Maven @@ -58,7 +58,7 @@ Simply add the appropriate dependency to your POM: com.wix future-perfect_${scala.tools.version} - 0.1.6 + 0.1.9 ``` @@ -80,7 +80,7 @@ To use the snapshot version, add the Sonatype snapshot repository and a dependen com.wix future-perfect_${scala.tools.version} - 0.1.7-SNAPSHOT + 0.1.10-SNAPSHOT ```