From 89a1a3037d625c43b05dc9034d9aad109c7ea100 Mon Sep 17 00:00:00 2001 From: adamw Date: Mon, 4 Sep 2017 11:32:17 +0200 Subject: Setting version to 0.0.10 --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 2041248..5ee302c 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.9` +import $ivy.`com.softwaremill.sttp::core:0.0.10` 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.9" +"com.softwaremill.sttp" %% "core" % "0.0.10" ``` `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 @@ -210,7 +210,7 @@ implicit val sttpHandler = HttpURLConnectionHandler To use, add the following dependency to your project: ```scala -"com.softwaremill.sttp" %% "akka-http-handler" % "0.0.9" +"com.softwaremill.sttp" %% "akka-http-handler" % "0.0.10" ``` This handler depends on [akka-http](http://doc.akka.io/docs/akka-http/current/scala/http/). @@ -269,13 +269,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.9" +"com.softwaremill.sttp" %% "async-http-client-handler-future" % "0.0.10" // or -"com.softwaremill.sttp" %% "async-http-client-handler-scalaz" % "0.0.9" +"com.softwaremill.sttp" %% "async-http-client-handler-scalaz" % "0.0.10" // or -"com.softwaremill.sttp" %% "async-http-client-handler-monix" % "0.0.9" +"com.softwaremill.sttp" %% "async-http-client-handler-monix" % "0.0.10" // or -"com.softwaremill.sttp" %% "async-http-client-handler-cats" % "0.0.9" +"com.softwaremill.sttp" %% "async-http-client-handler-cats" % "0.0.10" ``` This handler depends on [async-http-client](https://github.com/AsyncHttpClient/async-http-client). @@ -357,9 +357,9 @@ val response: Task[Response[Observable[ByteBuffer]]] = To use, add the following dependency to your project: ```scala -"com.softwaremill.sttp" %% "okhttp-handler" % "0.0.9" +"com.softwaremill.sttp" %% "okhttp-handler" % "0.0.10" // or, for the monix version: -"com.softwaremill.sttp" %% "okhttp-handler-monix" % "0.0.9" +"com.softwaremill.sttp" %% "okhttp-handler-monix" % "0.0.10" ``` This handler depends on [OkHttp](http://square.github.io/okhttp/), and offers: @@ -387,7 +387,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.9" +"com.softwaremill.sttp" %% "circe" % "0.0.10" ``` This module adds a method to the request and a function that can be given to -- cgit v1.2.3