aboutsummaryrefslogtreecommitdiff
path: root/docs/examples.rst
diff options
context:
space:
mode:
authoradamw <adam@warski.org>2018-02-20 14:05:13 +0100
committeradamw <adam@warski.org>2018-02-20 14:05:13 +0100
commitb1f389642cb30aafd804b008022fe96887b67a8c (patch)
treeb31552e5548d6ba41917a8f6cf54341cd8987506 /docs/examples.rst
parent7aee6a24cd71ab6d791e6d0e62a1c98a53bc464c (diff)
downloadsttp-b1f389642cb30aafd804b008022fe96887b67a8c.tar.gz
sttp-b1f389642cb30aafd804b008022fe96887b67a8c.tar.bz2
sttp-b1f389642cb30aafd804b008022fe96887b67a8c.zip
Setting version to 1.1.6v1.1.6
Diffstat (limited to 'docs/examples.rst')
-rw-r--r--docs/examples.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/examples.rst b/docs/examples.rst
index 586f3ac..29a956b 100644
--- a/docs/examples.rst
+++ b/docs/examples.rst
@@ -8,7 +8,7 @@ POST a form using the synchronous backend
Required dependencies::
- libraryDependencies ++= List("com.softwaremill.sttp" %% "core" % "1.1.5")
+ libraryDependencies ++= List("com.softwaremill.sttp" %% "core" % "1.1.6")
Example code::
@@ -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.5",
- "com.softwaremill.sttp" %% "json4s" % "1.1.5"
+ "com.softwaremill.sttp" %% "akka-http-backend" % "1.1.6",
+ "com.softwaremill.sttp" %% "json4s" % "1.1.6"
)
Example code::
@@ -68,7 +68,7 @@ Test an endpoint requiring multiple parameters
Required dependencies::
- libraryDependencies ++= List("com.softwaremill.sttp" %% "core" % "1.1.5")
+ libraryDependencies ++= List("com.softwaremill.sttp" %% "core" % "1.1.6")
Example code::