Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tutorial/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"]````

<div class="alert alert-info">The latest release might be newer, but the tutorial works at least
with this version.</div>
Expand All @@ -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 %}
Expand Down