Skip to content

Commit fb26b22

Browse files
committed
Release 0.11.2
1 parent 32c1f17 commit fb26b22

File tree

6 files changed

+13
-9
lines changed

6 files changed

+13
-9
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.11.2 (2023-08-01)
2+
3+
- Added `:legacy/merge-indents?` for compatibility with 0.10.x (#316)
4+
15
## 0.11.1 (2023-07-27)
26

37
- Fixed error when cljfmt has no configuration (#313)

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ Use `--help` for a list of all the command-line options.
7979

8080
For persistent configuration, you can use a [configuration file][].
8181

82-
[zipped up binary]: https://github.com/weavejester/cljfmt/releases/download/0.11.1/cljfmt-0.11.1-win-amd64.zip
82+
[zipped up binary]: https://github.com/weavejester/cljfmt/releases/download/0.11.2/cljfmt-0.11.2-win-amd64.zip
8383
[configuration file]: #configuration
8484

8585
### Clojure Tools
@@ -88,7 +88,7 @@ The official Clojure CLI supports installation of thirdparty [tools][].
8888
To install cljfmt as a tool, run:
8989

9090
```bash
91-
clj -Ttools install io.github.weavejester/cljfmt '{:git/tag "0.11.1"}' :as cljfmt
91+
clj -Ttools install io.github.weavejester/cljfmt '{:git/tag "0.11.2"}' :as cljfmt
9292
```
9393

9494
To use the tool to check for formatting errors in your project, run:
@@ -111,7 +111,7 @@ clj -Tcljfmt fix
111111
Leiningen, add the following plugin to your `project.clj` file:
112112

113113
```clojure
114-
:plugins [[dev.weavejester/lein-cljfmt "0.11.1"]]
114+
:plugins [[dev.weavejester/lein-cljfmt "0.11.2"]]
115115
```
116116

117117
To use the plugin to check code for formatting errors, run:
@@ -138,7 +138,7 @@ cljfmt can be run as a library that formats a string of Clojure code.
138138
First, add the dependency:
139139

140140
```edn
141-
{:deps {dev.weavejester/cljfmt {:mvn/version "0.11.1"}}}
141+
{:deps {dev.weavejester/cljfmt {:mvn/version "0.11.2"}}}
142142
```
143143

144144
Then use the library:

cljfmt/project.clj

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

cljfmt/src/cljfmt/main.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
[clojure.tools.cli :as cli])
88
(:gen-class))
99

10-
(def ^:const VERSION "0.11.1")
10+
(def ^:const VERSION "0.11.2")
1111

1212
(defn- cli-options [defaults]
1313
[["-h" "--help"]

install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -euo pipefail
44

5-
VERSION=0.11.1
5+
VERSION=0.11.2
66

77
case $(uname -s) in
88
Linux*)

lein-cljfmt/project.clj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
(defproject dev.weavejester/lein-cljfmt "0.11.1"
1+
(defproject dev.weavejester/lein-cljfmt "0.11.2"
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 [[dev.weavejester/cljfmt "0.11.1"]])
8+
:dependencies [[dev.weavejester/cljfmt "0.11.2"]])

0 commit comments

Comments
 (0)