diff --git a/README.md b/README.md index a1bfad23..6e48f423 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,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.9.0"]] +:plugins [[lein-cljfmt "0.9.1"]] ``` cljfmt has tested on Leiningen 2.5, but may not work on older @@ -73,7 +73,7 @@ your project's files: [clojure]: https://clojure.org/guides/deps_and_cli ```bash -clojure -Sdeps '{:deps {cljfmt {:mvn/version "0.9.0"}}}' \ +clojure -Sdeps '{:deps {cljfmt {:mvn/version "0.9.1"}}}' \ -m cljfmt.main [check|fix] ``` @@ -87,7 +87,7 @@ indentation file. For example, `indentation.clj`: You can then specify this file when running cljfmt: ```bash -clojure -Sdeps '{:deps {cljfmt {:mvn/version "0.9.0"}}}' \ +clojure -Sdeps '{:deps {cljfmt {:mvn/version "0.9.1"}}}' \ -m cljfmt.main check \ --indents indentation.clj ``` diff --git a/cljfmt/project.clj b/cljfmt/project.clj index e786bd93..e7c7989c 100644 --- a/cljfmt/project.clj +++ b/cljfmt/project.clj @@ -1,4 +1,4 @@ -(defproject cljfmt "0.9.0" +(defproject cljfmt "0.9.1" :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 0000fbf4..4e020d94 100644 --- a/lein-cljfmt/project.clj +++ b/lein-cljfmt/project.clj @@ -1,8 +1,8 @@ -(defproject lein-cljfmt "0.9.0" +(defproject lein-cljfmt "0.9.1" :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.9.0"]]) + :dependencies [[cljfmt "0.9.1"]])