Skip to content

Commit

Permalink
Update version in README
Browse files Browse the repository at this point in the history
  • Loading branch information
orrsella committed Apr 23, 2014
1 parent 628238e commit b372629
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -29,23 +29,23 @@ We chose to use Twitter's Future implementation rather than Scala's native Futur

Getting Started
===============
Future Perfect 0.1.4 is available on Maven Central Repository. The next milestone is 0.1.5-SNAPSHOT and is available from the Sonatype snapshots repository.
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.

SBT
---

Simply add the `future-perfect` module to your build settings:

```scala
libraryDependencies += "com.wix" %% "future-perfect" % "0.1.4"
libraryDependencies += "com.wix" %% "future-perfect" % "0.1.6"
```

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:

```scala
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"

libraryDependencies += "com.wix" %% "future-perfect" % "0.1.5-SNAPSHOT"
libraryDependencies += "com.wix" %% "future-perfect" % "0.1.7-SNAPSHOT"
```

Maven
Expand All @@ -58,7 +58,7 @@ Simply add the appropriate dependency to your POM:
<dependency>
<groupId>com.wix</groupId>
<artifactId>future-perfect_${scala.tools.version}</artifactId>
<version>0.1.4</version>
<version>0.1.6</version>
</dependency>
</dependencies>
```
Expand All @@ -80,7 +80,7 @@ To use the snapshot version, add the Sonatype snapshot repository and a dependen
<dependency>
<groupId>com.wix</groupId>
<artifactId>future-perfect_${scala.tools.version}</artifactId>
<version>0.1.5-SNAPSHOT</version>
<version>0.1.7-SNAPSHOT</version>
</dependency>
</dependencies>
```
Expand Down

0 comments on commit b372629

Please sign in to comment.