aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authoradamw <adam@warski.org>2017-07-26 22:22:41 +0200
committeradamw <adam@warski.org>2017-07-26 22:22:41 +0200
commit79111e9fd04de8c96b0db603271865925ebae304 (patch)
treebe0068716bb3247c5414e2cdaa9868b497083621 /README.md
parent8fba0b5cfa186b32da586de08c6670586b6e3d40 (diff)
downloadsttp-79111e9fd04de8c96b0db603271865925ebae304.tar.gz
sttp-79111e9fd04de8c96b0db603271865925ebae304.tar.bz2
sttp-79111e9fd04de8c96b0db603271865925ebae304.zip
Setting version to 0.0.3v0.0.3
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/README.md b/README.md
index 375523f..8da9a5a 100644
--- a/README.md
+++ b/README.md
@@ -55,7 +55,7 @@ If you are an [Ammonite](http://ammonite.io) user, you can quickly start
experimenting with sttp by copy-pasting the following:
```scala
-import $ivy.`com.softwaremill.sttp::core:0.0.2`
+import $ivy.`com.softwaremill.sttp::core:0.0.3`
import com.softwaremill.sttp._
implicit val handler = HttpURLConnectionSttpHandler
sttp.get(uri"http://httpbin.org/ip").send()
@@ -66,7 +66,7 @@ sttp.get(uri"http://httpbin.org/ip").send()
SBT dependency:
```scala
-"com.softwaremill.sttp" %% "core" % "0.0.2"
+"com.softwaremill.sttp" %% "core" % "0.0.3"
```
`sttp` is available for Scala 2.11 and 2.12, and requires Java 8. The core
@@ -192,7 +192,7 @@ implicit val sttpHandler = HttpURLConnectionSttpHandler
To use, add the following dependency to your project:
```scala
-"com.softwaremill.sttp" %% "akka-http-handler" % "0.0.2"
+"com.softwaremill.sttp" %% "akka-http-handler" % "0.0.3"
```
This handler depends on [akka-http](http://doc.akka.io/docs/akka-http/current/scala/http/).
@@ -251,11 +251,11 @@ val response: Future[Response[Source[ByteString, Any]]] =
To use, add the following dependency to your project:
```scala
-"com.softwaremill.sttp" %% "async-http-client-handler-future" % "0.0.2"
+"com.softwaremill.sttp" %% "async-http-client-handler-future" % "0.0.3"
// or
-"com.softwaremill.sttp" %% "async-http-client-handler-scalaz" % "0.0.2"
+"com.softwaremill.sttp" %% "async-http-client-handler-scalaz" % "0.0.3"
// or
-"com.softwaremill.sttp" %% "async-http-client-handler-monix" % "0.0.2"
+"com.softwaremill.sttp" %% "async-http-client-handler-monix" % "0.0.3"
```
This handler depends on [async-http-client](https://github.com/AsyncHttpClient/async-http-client).