aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authoradamw <adam@warski.org>2017-09-07 09:42:31 +0200
committeradamw <adam@warski.org>2017-09-07 09:42:31 +0200
commit1f9f2eff768ca599667a907f1e3eba7250fc2c23 (patch)
tree92c089592b53c0ccf645a1e1f6a62a83760496ff /README.md
parente9ca6cd4b2497b0478a40e5c3abec5685ad13a63 (diff)
downloadsttp-1f9f2eff768ca599667a907f1e3eba7250fc2c23.tar.gz
sttp-1f9f2eff768ca599667a907f1e3eba7250fc2c23.tar.bz2
sttp-1f9f2eff768ca599667a907f1e3eba7250fc2c23.zip
Setting version to 0.0.12v0.0.12
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 84b70b1..3a7d6b8 100644
--- a/README.md
+++ b/README.md
@@ -59,7 +59,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.11`
+import $ivy.`com.softwaremill.sttp::core:0.0.12`
import com.softwaremill.sttp._
implicit val handler = HttpURLConnectionHandler()
sttp.get(uri"http://httpbin.org/ip").send()
@@ -70,7 +70,7 @@ sttp.get(uri"http://httpbin.org/ip").send()
SBT dependency:
```scala
-"com.softwaremill.sttp" %% "core" % "0.0.11"
+"com.softwaremill.sttp" %% "core" % "0.0.12"
```
`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
@@ -222,7 +222,7 @@ implicit val sttpHandler = HttpURLConnectionHandler()
To use, add the following dependency to your project:
```scala
-"com.softwaremill.sttp" %% "akka-http-handler" % "0.0.11"
+"com.softwaremill.sttp" %% "akka-http-handler" % "0.0.12"
```
This handler depends on [akka-http](http://doc.akka.io/docs/akka-http/current/scala/http/).
@@ -281,13 +281,13 @@ 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.11"
+"com.softwaremill.sttp" %% "async-http-client-handler-future" % "0.0.12"
// or
-"com.softwaremill.sttp" %% "async-http-client-handler-scalaz" % "0.0.11"
+"com.softwaremill.sttp" %% "async-http-client-handler-scalaz" % "0.0.12"
// or
-"com.softwaremill.sttp" %% "async-http-client-handler-monix" % "0.0.11"
+"com.softwaremill.sttp" %% "async-http-client-handler-monix" % "0.0.12"
// or
-"com.softwaremill.sttp" %% "async-http-client-handler-cats" % "0.0.11"
+"com.softwaremill.sttp" %% "async-http-client-handler-cats" % "0.0.12"
```
This handler depends on [async-http-client](https://github.com/AsyncHttpClient/async-http-client).
@@ -369,9 +369,9 @@ val response: Task[Response[Observable[ByteBuffer]]] =
To use, add the following dependency to your project:
```scala
-"com.softwaremill.sttp" %% "okhttp-handler" % "0.0.11"
+"com.softwaremill.sttp" %% "okhttp-handler" % "0.0.12"
// or, for the monix version:
-"com.softwaremill.sttp" %% "okhttp-handler-monix" % "0.0.11"
+"com.softwaremill.sttp" %% "okhttp-handler-monix" % "0.0.12"
```
This handler depends on [OkHttp](http://square.github.io/okhttp/), and offers:
@@ -407,7 +407,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.11"
+"com.softwaremill.sttp" %% "circe" % "0.0.12"
```
This module adds a method to the request and a function that can be given to