aboutsummaryrefslogtreecommitdiff
path: root/docs/examples.rst
diff options
context:
space:
mode:
authoradamw <adam@warski.org>2018-03-22 17:50:45 +0100
committeradamw <adam@warski.org>2018-03-22 17:50:45 +0100
commit232c0a3c7128e97dea821af605231ce9a8fe1858 (patch)
tree2b6f811a4c539030095ab7957c2b355fa6de50f3 /docs/examples.rst
parentd06c93b7691dec9b79e36c675440cfd28e93975c (diff)
downloadsttp-232c0a3c7128e97dea821af605231ce9a8fe1858.tar.gz
sttp-232c0a3c7128e97dea821af605231ce9a8fe1858.tar.bz2
sttp-232c0a3c7128e97dea821af605231ce9a8fe1858.zip
Setting version to 1.1.11v1.1.11
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 eb51813..6e519ea 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.10")
+ libraryDependencies ++= List("com.softwaremill.sttp" %% "core" % "1.1.11")
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.10",
- "com.softwaremill.sttp" %% "json4s" % "1.1.10"
+ "com.softwaremill.sttp" %% "akka-http-backend" % "1.1.11",
+ "com.softwaremill.sttp" %% "json4s" % "1.1.11"
)
Example code::
@@ -68,7 +68,7 @@ Test an endpoint requiring multiple parameters
Required dependencies::
- libraryDependencies ++= List("com.softwaremill.sttp" %% "core" % "1.1.10")
+ libraryDependencies ++= List("com.softwaremill.sttp" %% "core" % "1.1.11")
Example code::