aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authoradamw <adam@warski.org>2017-07-25 13:24:15 +0200
committeradamw <adam@warski.org>2017-07-25 13:24:15 +0200
commit9832129d490c56db6c23409aca2dfd61eb9e2cb4 (patch)
treeb0f5a8d9dafaab4fd64d1adec4e5b7e77bab0987 /README.md
parent5f60c9c2a2e7f596b21500cff82282614eada7fa (diff)
downloadsttp-9832129d490c56db6c23409aca2dfd61eb9e2cb4.tar.gz
sttp-9832129d490c56db6c23409aca2dfd61eb9e2cb4.tar.bz2
sttp-9832129d490c56db6c23409aca2dfd61eb9e2cb4.zip
Setting version to 0.0.1.5v0.0.1.5
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 6ee415f..d265c1f 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.1.2`
+import $ivy.`com.softwaremill.sttp::core:0.0.1.5`
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.1.2"
+"com.softwaremill.sttp" %% "core" % "0.0.1.5"
```
`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.1.2"
+"com.softwaremill.sttp" %% "akka-http-handler" % "0.0.1.5"
```
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.1.2"
+"com.softwaremill.sttp" %% "async-http-client-handler-future" % "0.0.1.5"
// or
-"com.softwaremill.sttp" %% "async-http-client-handler-scalaz" % "0.0.1.2"
+"com.softwaremill.sttp" %% "async-http-client-handler-scalaz" % "0.0.1.5"
// or
-"com.softwaremill.sttp" %% "async-http-client-handler-monix" % "0.0.1.2"
+"com.softwaremill.sttp" %% "async-http-client-handler-monix" % "0.0.1.5"
```
This handler depends on [async-http-handler](https://github.com/AsyncHttpClient/async-http-client).