aboutsummaryrefslogtreecommitdiff
path: root/docs/examples.rst
diff options
context:
space:
mode:
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 e69c466..e1db7bc 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.13")
+ libraryDependencies ++= List("com.softwaremill.sttp" %% "core" % "1.1.14")
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.13",
- "com.softwaremill.sttp" %% "json4s" % "1.1.13"
+ "com.softwaremill.sttp" %% "akka-http-backend" % "1.1.14",
+ "com.softwaremill.sttp" %% "json4s" % "1.1.14"
)
Example code::
@@ -68,7 +68,7 @@ Test an endpoint requiring multiple parameters
Required dependencies::
- libraryDependencies ++= List("com.softwaremill.sttp" %% "core" % "1.1.13")
+ libraryDependencies ++= List("com.softwaremill.sttp" %% "core" % "1.1.14")
Example code::