Skip to content

Commit

Permalink
Setting version to 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
adamw committed Nov 29, 2017
1 parent e427a50 commit 5ff0cbe
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 18 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ and its [follow-up](https://softwaremill.com/sttp-streaming-uri-interpolator/).
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:1.1.0`
import $ivy.`com.softwaremill.sttp::core:1.1.1`
import com.softwaremill.sttp._
implicit val backend = HttpURLConnectionBackend()
sttp.get(uri"http://httpbin.org/ip").send()
Expand All @@ -52,7 +52,7 @@ sttp.get(uri"http://httpbin.org/ip").send()
Add the following dependency:

```scala
"com.softwaremill.sttp" %% "core" % "1.1.0"
"com.softwaremill.sttp" %% "core" % "1.1.1"
```

Then, import:
Expand Down
2 changes: 1 addition & 1 deletion docs/backends/akkahttp.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ akka-http backend

To use, add the following dependency to your project::

"com.softwaremill.sttp" %% "akka-http-backend" % "1.1.0"
"com.softwaremill.sttp" %% "akka-http-backend" % "1.1.1"

This backend depends on `akka-http <http://doc.akka.io/docs/akka-http/current/scala/http/>`_. A fully **asynchronous** backend. Sending a request returns a response wrapped in a ``Future``.

Expand Down
8 changes: 4 additions & 4 deletions docs/backends/asynchttpclient.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ async-http-client backend

To use, add the following dependency to your project::

"com.softwaremill.sttp" %% "async-http-client-backend-future" % "1.1.0"
"com.softwaremill.sttp" %% "async-http-client-backend-future" % "1.1.1"
// or
"com.softwaremill.sttp" %% "async-http-client-backend-scalaz" % "1.1.0"
"com.softwaremill.sttp" %% "async-http-client-backend-scalaz" % "1.1.1"
// or
"com.softwaremill.sttp" %% "async-http-client-backend-monix" % "1.1.0"
"com.softwaremill.sttp" %% "async-http-client-backend-monix" % "1.1.1"
// or
"com.softwaremill.sttp" %% "async-http-client-backend-cats" % "1.1.0"
"com.softwaremill.sttp" %% "async-http-client-backend-cats" % "1.1.1"

This backend depends on `async-http-client <https://github.com/AsyncHttpClient/async-http-client>`_.
A fully **asynchronous** backend, which uses `Netty <http://netty.io>`_ behind the
Expand Down
4 changes: 2 additions & 2 deletions docs/backends/okhttp.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ OkHttp backend

To use, add the following dependency to your project::

"com.softwaremill.sttp" %% "okhttp-backend" % "1.1.0"
"com.softwaremill.sttp" %% "okhttp-backend" % "1.1.1"
// or, for the monix version:
"com.softwaremill.sttp" %% "okhttp-backend-monix" % "1.1.0"
"com.softwaremill.sttp" %% "okhttp-backend-monix" % "1.1.1"

This backend depends on `OkHttp <http://square.github.io/okhttp/>`_, and offers:

Expand Down
8 changes: 4 additions & 4 deletions docs/examples.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ POST a form using the synchronous backend

Required dependencies::

libraryDependencies ++= List("com.softwaremill.sttp" %% "core" % "1.1.0")
libraryDependencies ++= List("com.softwaremill.sttp" %% "core" % "1.1.1")

Example code::

Expand All @@ -34,8 +34,8 @@ GET and parse JSON using the akka-http backend and json4s
Required dependencies::

libraryDependencies ++= List(
"com.softwaremill.sttp" %% "akka-http-backend" % "1.1.0",
"com.softwaremill.sttp" %% "json4s" % "1.1.0"
"com.softwaremill.sttp" %% "akka-http-backend" % "1.1.1",
"com.softwaremill.sttp" %% "json4s" % "1.1.1"
)

Example code::
Expand Down Expand Up @@ -68,7 +68,7 @@ Test an endpoint requiring multiple parameters

Required dependencies::

libraryDependencies ++= List("com.softwaremill.sttp" %% "core" % "1.1.0")
libraryDependencies ++= List("com.softwaremill.sttp" %% "core" % "1.1.1")

Example code::

Expand Down
4 changes: 2 additions & 2 deletions docs/json.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Circe

JSON encoding of bodies and decoding of responses can be handled using `Circe <https://circe.github.io/circe/>`_ by the ``circe`` module. To use add the following dependency to your project::

"com.softwaremill.sttp" %% "circe" % "1.1.0"
"com.softwaremill.sttp" %% "circe" % "1.1.1"

This module adds a method to the request and a function that can be given to a request to decode the response to a specific object::

Expand All @@ -35,7 +35,7 @@ Json4s

To encode and decode json using json4s-native, add the following dependency to your project::

"com.softwaremill.sttp" %% "json4s" % "1.1.0"
"com.softwaremill.sttp" %% "json4s" % "1.1.1"

Using this module it is possible to set request bodies and read response bodies as case classes, using the implicitly available ``org.json4s.Formats`` (which defaults to ``org.json4s.DefaultFormats``).

Expand Down
4 changes: 2 additions & 2 deletions docs/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Using sbt

The basic dependency which provides the API and the default synchronous backend is::

"com.softwaremill.sttp" %% "core" % "1.1.0"
"com.softwaremill.sttp" %% "core" % "1.1.1"

``sttp`` is available for Scala 2.11 and 2.12, and requires Java 8. The core module has no transitive dependencies.

Expand All @@ -19,7 +19,7 @@ Using Ammonite

If you are an `Ammonite <http://ammonite.io>`_ user, you can quickly start experimenting with sttp by copy-pasting the following::

import $ivy.`com.softwaremill.sttp::core:1.1.0`
import $ivy.`com.softwaremill.sttp::core:1.1.1`
import com.softwaremill.sttp._
implicit val backend = HttpURLConnectionBackend()
sttp.get(uri"http://httpbin.org/ip").send()
Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "1.1.1-SNAPSHOT"
version in ThisBuild := "1.1.1"

0 comments on commit 5ff0cbe

Please sign in to comment.