Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update liberator and ring plugin version in getting started guide #320

Open
wants to merge 1 commit into
base: gh-pages
Choose a base branch
from
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