aboutsummaryrefslogtreecommitdiff
path: root/docs/examples.rst
diff options
context:
space:
mode:
authoradamw <adam@warski.org>2017-12-06 20:49:18 +0100
committeradamw <adam@warski.org>2017-12-06 20:49:18 +0100
commit5dc25b70920b24bc3078a0c878c198445953aad6 (patch)
tree3ecc6e21cd529c4a944fea6d156a7a8332c66e11 /docs/examples.rst
parent3fb284c3c8849baa0f7b0d34ee9be78af7935bb6 (diff)
downloadsttp-5dc25b70920b24bc3078a0c878c198445953aad6.tar.gz
sttp-5dc25b70920b24bc3078a0c878c198445953aad6.tar.bz2
sttp-5dc25b70920b24bc3078a0c878c198445953aad6.zip
Setting version to 1.1.2v1.1.2
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 f9004d8..17ca6c8 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.1")
+ libraryDependencies ++= List("com.softwaremill.sttp" %% "core" % "1.1.2")
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.1",
- "com.softwaremill.sttp" %% "json4s" % "1.1.1"
+ "com.softwaremill.sttp" %% "akka-http-backend" % "1.1.2",
+ "com.softwaremill.sttp" %% "json4s" % "1.1.2"
)
Example code::
@@ -68,7 +68,7 @@ Test an endpoint requiring multiple parameters
Required dependencies::
- libraryDependencies ++= List("com.softwaremill.sttp" %% "core" % "1.1.1")
+ libraryDependencies ++= List("com.softwaremill.sttp" %% "core" % "1.1.2")
Example code::