aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoradamw <adam@warski.org>2017-08-02 12:13:21 +0200
committeradamw <adam@warski.org>2017-08-02 12:13:21 +0200
commite125dfa3de0d5233c5820ef34ab2584d20e26628 (patch)
tree023c0f88152274974c6b88ee15a85dbef0222c88
parent1979c99253a545009666b79c75c592e19e8083af (diff)
downloadsttp-e125dfa3de0d5233c5820ef34ab2584d20e26628.tar.gz
sttp-e125dfa3de0d5233c5820ef34ab2584d20e26628.tar.bz2
sttp-e125dfa3de0d5233c5820ef34ab2584d20e26628.zip
Setting version to 0.0.4v0.0.4
-rw-r--r--README.md14
-rw-r--r--version.sbt2
2 files changed, 8 insertions, 8 deletions
diff --git a/README.md b/README.md
index d3dadd8..3ed71bb 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.3`
+import $ivy.`com.softwaremill.sttp::core:0.0.4`
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.3"
+"com.softwaremill.sttp" %% "core" % "0.0.4"
```
`sttp` is available for Scala 2.11 and 2.12, and requires Java 8. The core
@@ -203,7 +203,7 @@ implicit val sttpHandler = HttpURLConnectionSttpHandler
To use, add the following dependency to your project:
```scala
-"com.softwaremill.sttp" %% "akka-http-handler" % "0.0.3"
+"com.softwaremill.sttp" %% "akka-http-handler" % "0.0.4"
```
This handler depends on [akka-http](http://doc.akka.io/docs/akka-http/current/scala/http/).
@@ -262,11 +262,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.3"
+"com.softwaremill.sttp" %% "async-http-client-handler-future" % "0.0.4"
// or
-"com.softwaremill.sttp" %% "async-http-client-handler-scalaz" % "0.0.3"
+"com.softwaremill.sttp" %% "async-http-client-handler-scalaz" % "0.0.4"
// or
-"com.softwaremill.sttp" %% "async-http-client-handler-monix" % "0.0.3"
+"com.softwaremill.sttp" %% "async-http-client-handler-monix" % "0.0.4"
```
This handler depends on [async-http-client](https://github.com/AsyncHttpClient/async-http-client).
@@ -343,7 +343,7 @@ val response: Task[Response[Observable[ByteBuffer]]] =
To use, add the following dependency to your project:
```scala
-"com.softwaremill.sttp" %% "okhttp-client-handler" % "0.0.3"
+"com.softwaremill.sttp" %% "okhttp-client-handler" % "0.0.4"
```
This handler depends on [OkHttp](http://square.github.io/okhttp/), and offers
diff --git a/version.sbt b/version.sbt
index d9bc6ce..1f83322 100644
--- a/version.sbt
+++ b/version.sbt
@@ -1 +1 @@
-version in ThisBuild := "0.0.4-SNAPSHOT"
+version in ThisBuild := "0.0.4"