aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoradamw <adam@warski.org>2017-08-30 14:22:35 +0200
committeradamw <adam@warski.org>2017-08-30 14:22:35 +0200
commit9af8c30eee79479ced5d7e203702076a002acc20 (patch)
tree0426ee21e257e720d8631105bcd6eaf127efbeca
parentbb8ed00d350dd9154f3499825cc3e844730dac0e (diff)
downloadsttp-9af8c30eee79479ced5d7e203702076a002acc20.tar.gz
sttp-9af8c30eee79479ced5d7e203702076a002acc20.tar.bz2
sttp-9af8c30eee79479ced5d7e203702076a002acc20.zip
Setting version to 0.0.8v0.0.8
-rw-r--r--README.md18
-rw-r--r--version.sbt2
2 files changed, 10 insertions, 10 deletions
diff --git a/README.md b/README.md
index 9716cf8..3e133fe 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.7`
+import $ivy.`com.softwaremill.sttp::core:0.0.8`
import com.softwaremill.sttp._
implicit val handler = HttpURLConnectionSttpHandler
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.7"
+"com.softwaremill.sttp" %% "core" % "0.0.8"
```
`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 = HttpURLConnectionSttpHandler
To use, add the following dependency to your project:
```scala
-"com.softwaremill.sttp" %% "akka-http-handler" % "0.0.7"
+"com.softwaremill.sttp" %% "akka-http-handler" % "0.0.8"
```
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.7"
+"com.softwaremill.sttp" %% "async-http-client-handler-future" % "0.0.8"
// or
-"com.softwaremill.sttp" %% "async-http-client-handler-scalaz" % "0.0.7"
+"com.softwaremill.sttp" %% "async-http-client-handler-scalaz" % "0.0.8"
// or
-"com.softwaremill.sttp" %% "async-http-client-handler-monix" % "0.0.7"
+"com.softwaremill.sttp" %% "async-http-client-handler-monix" % "0.0.8"
// or
-"com.softwaremill.sttp" %% "async-http-client-handler-cats" % "0.0.7"
+"com.softwaremill.sttp" %% "async-http-client-handler-cats" % "0.0.8"
```
This handler depends on [async-http-client](https://github.com/AsyncHttpClient/async-http-client).
@@ -357,7 +357,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.7"
+"com.softwaremill.sttp" %% "okhttp-client-handler" % "0.0.8"
```
This handler depends on [OkHttp](http://square.github.io/okhttp/), and offers
@@ -383,7 +383,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.7"
+"com.softwaremill.sttp" %% "circe" % "0.0.8"
```
This module adds a method to the request and a function that can be given to
diff --git a/version.sbt b/version.sbt
index fdc648e..a3b1c4b 100644
--- a/version.sbt
+++ b/version.sbt
@@ -1 +1 @@
-version in ThisBuild := "0.0.8-SNAPSHOT"
+version in ThisBuild := "0.0.8"