Skip to content

Commit 1003c67

Browse files
committed
Release 0.9.0
1 parent 5344ee1 commit 1003c67

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ The easiest way to get started with cljfmt is to add the lein-cljfmt
3232
plugin to your [Leiningen][] project map:
3333

3434
```clojure
35-
:plugins [[lein-cljfmt "0.8.2"]]
35+
:plugins [[lein-cljfmt "0.9.0"]]
3636
```
3737

3838
cljfmt has tested on Leiningen 2.5, but may not work on older
@@ -73,7 +73,7 @@ your project's files:
7373
[clojure]: https://clojure.org/guides/deps_and_cli
7474

7575
```bash
76-
clojure -Sdeps '{:deps {cljfmt {:mvn/version "0.8.2"}}}' \
76+
clojure -Sdeps '{:deps {cljfmt {:mvn/version "0.9.0"}}}' \
7777
-m cljfmt.main [check|fix]
7878
```
7979

@@ -87,7 +87,7 @@ indentation file. For example, `indentation.clj`:
8787
You can then specify this file when running cljfmt:
8888

8989
```bash
90-
clojure -Sdeps '{:deps {cljfmt {:mvn/version "0.8.2"}}}' \
90+
clojure -Sdeps '{:deps {cljfmt {:mvn/version "0.9.0"}}}' \
9191
-m cljfmt.main check \
9292
--indents indentation.clj
9393
```

cljfmt/project.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject cljfmt "0.8.2"
1+
(defproject cljfmt "0.9.0"
22
:description "A library for formatting Clojure code"
33
:url "https://github.com/weavejester/cljfmt"
44
:scm {:dir ".."}

lein-cljfmt/project.clj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
(defproject lein-cljfmt "0.8.2"
1+
(defproject lein-cljfmt "0.9.0"
22
:description "A library for formatting Clojure code"
33
:url "https://github.com/weavejester/cljfmt"
44
:scm {:dir ".."}
55
:license {:name "Eclipse Public License"
66
:url "http://www.eclipse.org/legal/epl-v10.html"}
77
:eval-in-leiningen true
8-
:dependencies [[cljfmt "0.8.2"]])
8+
:dependencies [[cljfmt "0.9.0"]])

0 commit comments

Comments
 (0)