how to check the latest version of a clojure library on clojars?

Viewed 555

I am using pomegranate's add-dependencies function:

(add-dependencies :coordinates '[[incanter "1.2.3"]]
                  :repositories {"clojars" "http://clojars.org/repo"})

However, I don't usually know what the latest version of incanter (or any other project). Is there a way to check for that programmatically?

3 Answers
Related