aboutsummaryrefslogtreecommitdiff
path: root/docs/examples.rst
diff options
context:
space:
mode:
authoradamw <adam@warski.org>2018-01-29 14:34:04 +0100
committeradamw <adam@warski.org>2018-01-29 14:34:04 +0100
commita6a53c00138ea73584138566a64a1bd7264484b1 (patch)
tree44a4b2c2d105c1d6d194bc7650973340d16f5d84 /docs/examples.rst
parentc691841ad379de9bd1e96038b1504592012255e7 (diff)
downloadsttp-a6a53c00138ea73584138566a64a1bd7264484b1.tar.gz
sttp-a6a53c00138ea73584138566a64a1bd7264484b1.tar.bz2
sttp-a6a53c00138ea73584138566a64a1bd7264484b1.zip
Setting version to 1.1.5v1.1.5
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 7242c42..586f3ac 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.4")
+ libraryDependencies ++= List("com.softwaremill.sttp" %% "core" % "1.1.5")
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.4",
- "com.softwaremill.sttp" %% "json4s" % "1.1.4"
+ "com.softwaremill.sttp" %% "akka-http-backend" % "1.1.5",
+ "com.softwaremill.sttp" %% "json4s" % "1.1.5"
)
Example code::
@@ -68,7 +68,7 @@ Test an endpoint requiring multiple parameters
Required dependencies::
- libraryDependencies ++= List("com.softwaremill.sttp" %% "core" % "1.1.4")
+ libraryDependencies ++= List("com.softwaremill.sttp" %% "core" % "1.1.5")
Example code::