aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authoradamw <adam@warski.org>2017-09-22 16:38:28 +0200
committeradamw <adam@warski.org>2017-09-22 16:38:28 +0200
commit5771f5ba5b6e0a8c1fe313f47a31642d3ca2d75f (patch)
tree1b0f65a857a3e291335b2982f96785ab41f227ed /README.md
parent77dfc7bfa577ab72d2325efcad813f6a165a4c36 (diff)
downloadsttp-5771f5ba5b6e0a8c1fe313f47a31642d3ca2d75f.tar.gz
sttp-5771f5ba5b6e0a8c1fe313f47a31642d3ca2d75f.tar.bz2
sttp-5771f5ba5b6e0a8c1fe313f47a31642d3ca2d75f.zip
Setting version to 0.0.15v0.0.15
Diffstat (limited to 'README.md')
-rw-r--r--README.md20
1 files changed, 10 insertions, 10 deletions
diff --git a/README.md b/README.md
index c12b4e7..65ffa38 100644
--- a/README.md
+++ b/README.md
@@ -69,7 +69,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.14`
+import $ivy.`com.softwaremill.sttp::core:0.0.15`
import com.softwaremill.sttp._
implicit val backend = HttpURLConnectionBackend()
sttp.get(uri"http://httpbin.org/ip").send()
@@ -80,7 +80,7 @@ sttp.get(uri"http://httpbin.org/ip").send()
SBT dependency:
```scala
-"com.softwaremill.sttp" %% "core" % "0.0.14"
+"com.softwaremill.sttp" %% "core" % "0.0.15"
```
`sttp` is available for Scala 2.11 and 2.12, and requires Java 7 if using an `OkHttp` based backend, or Java 8 otherwise. The core
@@ -236,7 +236,7 @@ implicit val sttpBackend = HttpURLConnectionBackend()
To use, add the following dependency to your project:
```scala
-"com.softwaremill.sttp" %% "akka-http-backend" % "0.0.14"
+"com.softwaremill.sttp" %% "akka-http-backend" % "0.0.15"
```
This backend depends on [akka-http](http://doc.akka.io/docs/akka-http/current/scala/http/).
@@ -295,13 +295,13 @@ val response: Future[Response[Source[ByteString, Any]]] =
To use, add the following dependency to your project:
```scala
-"com.softwaremill.sttp" %% "async-http-client-backend-future" % "0.0.14"
+"com.softwaremill.sttp" %% "async-http-client-backend-future" % "0.0.15"
// or
-"com.softwaremill.sttp" %% "async-http-client-backend-scalaz" % "0.0.14"
+"com.softwaremill.sttp" %% "async-http-client-backend-scalaz" % "0.0.15"
// or
-"com.softwaremill.sttp" %% "async-http-client-backend-monix" % "0.0.14"
+"com.softwaremill.sttp" %% "async-http-client-backend-monix" % "0.0.15"
// or
-"com.softwaremill.sttp" %% "async-http-client-backend-cats" % "0.0.14"
+"com.softwaremill.sttp" %% "async-http-client-backend-cats" % "0.0.15"
```
This backend depends on [async-http-client](https://github.com/AsyncHttpClient/async-http-client).
@@ -386,9 +386,9 @@ streams for sending request & receiving responses.
To use, add the following dependency to your project:
```scala
-"com.softwaremill.sttp" %% "okhttp-backend" % "0.0.14"
+"com.softwaremill.sttp" %% "okhttp-backend" % "0.0.15"
// or, for the monix version:
-"com.softwaremill.sttp" %% "okhttp-backend-monix" % "0.0.14"
+"com.softwaremill.sttp" %% "okhttp-backend-monix" % "0.0.15"
```
This backend depends on [OkHttp](http://square.github.io/okhttp/), and offers:
@@ -424,7 +424,7 @@ JSON encoding of bodies and decoding of responses can be handled using
add the following dependency to your project:
```scala
-"com.softwaremill.sttp" %% "circe" % "0.0.14"
+"com.softwaremill.sttp" %% "circe" % "0.0.15"
```
This module adds a method to the request and a function that can be given to