aboutsummaryrefslogtreecommitdiff
path: root/docs/examples.rst
diff options
context:
space:
mode:
authoradamw <adam@warski.org>2017-11-29 09:48:37 +0100
committeradamw <adam@warski.org>2017-11-29 09:48:37 +0100
commit5ff0cbe601b33b56ab408ddb8afcfd22ac15114f (patch)
tree2a4551078a7609816e452717655894534a47c524 /docs/examples.rst
parente427a50cd5f9a5c8c97c99cb9b18a676d933af18 (diff)
downloadsttp-5ff0cbe601b33b56ab408ddb8afcfd22ac15114f.tar.gz
sttp-5ff0cbe601b33b56ab408ddb8afcfd22ac15114f.tar.bz2
sttp-5ff0cbe601b33b56ab408ddb8afcfd22ac15114f.zip
Setting version to 1.1.1v1.1.1
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 b6d2965..f9004d8 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.0")
+ libraryDependencies ++= List("com.softwaremill.sttp" %% "core" % "1.1.1")
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.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::
@@ -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::