@@ -18,7 +18,7 @@ project may be more suitable.
1818[ clojure style guide ] : https://github.com/bbatsov/clojure-style-guide
1919[ zprint ] : https://github.com/kkinnear/zprint
2020
21- ## Breaking Changes in 0.11.0
21+ ## Breaking Changes in 0.11.x
2222
2323The ` :indents ` key has been split into ` :indents ` and ` :extra-indents ` .
2424The ` :indents ` key ** replaces** all default indents, while the
@@ -63,7 +63,7 @@ Use `--help` for a list of all the command-line options.
6363
6464For persistent configuration, you can use a [ configuration file] [ ] .
6565
66- [ zipped up binary ] : https://github.com/weavejester/cljfmt/releases/download/0.11.0 /cljfmt-0.11.0 -win-amd64.zip
66+ [ zipped up binary ] : https://github.com/weavejester/cljfmt/releases/download/0.11.1 /cljfmt-0.11.1 -win-amd64.zip
6767[ configuration file ] : #configuration
6868
6969### Clojure Tools
@@ -72,7 +72,7 @@ The official Clojure CLI supports installation of thirdparty [tools][].
7272To install cljfmt as a tool, run:
7373
7474``` bash
75- clj -Ttools install io.github.weavejester/cljfmt ' {:git/tag "0.11.0 "}' :as cljfmt
75+ clj -Ttools install io.github.weavejester/cljfmt ' {:git/tag "0.11.1 "}' :as cljfmt
7676```
7777
7878To use the tool to check for formatting errors in your project, run:
@@ -95,7 +95,7 @@ clj -Tcljfmt fix
9595Leiningen, add the following plugin to your ` project.clj ` file:
9696
9797``` clojure
98- :plugins [[dev.weavejester/lein-cljfmt " 0.11.0 " ]]
98+ :plugins [[dev.weavejester/lein-cljfmt " 0.11.1 " ]]
9999```
100100
101101To use the plugin to check code for formatting errors, run:
@@ -122,7 +122,7 @@ cljfmt can be run as a library that formats a string of Clojure code.
122122First, add the dependency:
123123
124124``` edn
125- {:deps {dev.weavejester/cljfmt {:mvn/version " 0.11.0 " }}}
125+ {:deps {dev.weavejester/cljfmt {:mvn/version " 0.11.1 " }}}
126126```
127127
128128Then use the library:
0 commit comments