diff --git a/README.md b/README.md index c967afd..a9bba5c 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ The easiest way to get started with cljfmt is to add the lein-cljfmt plugin to your [Leiningen][] project map: ```clojure -:plugins [[lein-cljfmt "0.5.2"]] +:plugins [[lein-cljfmt "0.5.3"]] ``` cljfmt has tested on Leiningen 2.5, but may not work on older diff --git a/cljfmt/project.clj b/cljfmt/project.clj index 5c92a36..2288a59 100644 --- a/cljfmt/project.clj +++ b/cljfmt/project.clj @@ -1,4 +1,4 @@ -(defproject cljfmt "0.5.2" +(defproject cljfmt "0.5.3" :description "A library for formatting Clojure code" :url "https://github.com/weavejester/cljfmt" :scm {:dir ".."} diff --git a/lein-cljfmt/project.clj b/lein-cljfmt/project.clj index a665c83..6591207 100644 --- a/lein-cljfmt/project.clj +++ b/lein-cljfmt/project.clj @@ -1,10 +1,10 @@ -(defproject lein-cljfmt "0.5.2" +(defproject lein-cljfmt "0.5.3" :description "A library for formatting Clojure code" :url "https://github.com/weavejester/cljfmt" :scm {:dir ".."} :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :eval-in-leiningen true - :dependencies [[cljfmt "0.5.2"] + :dependencies [[cljfmt "0.5.3"] [meta-merge "0.1.1"] [com.googlecode.java-diff-utils/diffutils "1.2.1"]])