From 9b78518fdf0450108287118224f8c4aa07c03b50 Mon Sep 17 00:00:00 2001 From: Jakob Durstberger Date: Wed, 25 Aug 2021 09:22:28 +0100 Subject: [PATCH] Update liberator and ring plugin version in getting started guide This fixes the ring server not starting when using Clojure 1.10 --- tutorial/getting-started.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 %}