Skip to content

Commit

Permalink
Release 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
weavejester committed Aug 26, 2022
1 parent 5344ee1 commit 1003c67
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.8.2"]]
:plugins [[lein-cljfmt "0.9.0"]]
```

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

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

Expand All @@ -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.8.2"}}}' \
clojure -Sdeps '{:deps {cljfmt {:mvn/version "0.9.0"}}}' \
-m cljfmt.main check \
--indents indentation.clj
```
Expand Down
2 changes: 1 addition & 1 deletion cljfmt/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject cljfmt "0.8.2"
(defproject cljfmt "0.9.0"
:description "A library for formatting Clojure code"
:url "https://github.com/weavejester/cljfmt"
:scm {:dir ".."}
Expand Down
4 changes: 2 additions & 2 deletions lein-cljfmt/project.clj
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
(defproject lein-cljfmt "0.8.2"
(defproject lein-cljfmt "0.9.0"
: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.8.2"]])
:dependencies [[cljfmt "0.9.0"]])

0 comments on commit 1003c67

Please sign in to comment.