diff --git a/tutorial/getting-started.md b/tutorial/getting-started.md
index 4502c8d..48c914c 100644
--- a/tutorial/getting-started.md
+++ b/tutorial/getting-started.md
@@ -10,7 +10,7 @@ This part will give you a quick start into programming with liberator.
Liberator is available from clojars. Add liberator to your project.clj as
-````[liberator "0.15.1"]````
+````[liberator "0.15.3"]````
The latest release might be newer, but the tutorial works at least
with this version.
@@ -26,10 +26,10 @@ Add dependencies to project.clj:
{% highlight clojure %}
(defproject liberator-tutorial "0.1.0-SNAPSHOT"
- :plugins [[lein-ring "0.12.2"]]
+ :plugins [[lein-ring "0.12.5"]]
:ring {:handler liberator-tutorial.core/handler}
:dependencies [[org.clojure/clojure "1.9.0"]
- [liberator "0.15.1"]
+ [liberator "0.15.3"]
[compojure "1.6.0"]
[ring/ring-core "1.6.3"]])
{% endhighlight %}