Skip to content

Commit c342fc3

Browse files
committed
Release 0.14.1
1 parent dbbea15 commit c342fc3

File tree

7 files changed

+16
-10
lines changed

7 files changed

+16
-10
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
lein: 2.12.0
2121
bb: latest
2222
clj-kondo: 2025.09.22
23-
cljfmt: 0.14.0
23+
cljfmt: 0.14.1
2424

2525
- name: Execute tests
2626
working-directory: ./cljfmt

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 0.14.1 (2025-10-20)
2+
3+
- Added `:align-binding-columns?` option (#373)
4+
- Added default indentation for `let*` (#168)
5+
- Fixed bug with aligning columns where the newlines were deeply nested
6+
17
## 0.14.0 (2025-10-15)
28

39
- Added `:align-map-columns?` option (#371)

README.md

Lines changed: 4 additions & 4 deletions
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.14.0/cljfmt-0.14.0-win-amd64.zip
82+
[zipped up binary]: https://github.com/weavejester/cljfmt/releases/download/0.14.1/cljfmt-0.14.1-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.14.0"}' :as cljfmt
91+
clj -Ttools install io.github.weavejester/cljfmt '{:git/tag "0.14.1"}' :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.14.0"]]
114+
:plugins [[dev.weavejester/lein-cljfmt "0.14.1"]]
115115
```
116116

117117
To use the plugin to check code for formatting errors, run:
@@ -139,7 +139,7 @@ recursively checks / fixes paths like the CLI tool.
139139
First, add the dependency:
140140

141141
```edn
142-
{:deps {dev.weavejester/cljfmt {:mvn/version "0.14.0"}}}
142+
{:deps {dev.weavejester/cljfmt {:mvn/version "0.14.1"}}}
143143
```
144144

145145
Then use the library:

cljfmt/project.clj

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

cljfmt/src/cljfmt/main.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
[clojure.tools.cli :as cli])
99
(:gen-class))
1010

11-
(def ^:const VERSION "0.14.0")
11+
(def ^:const VERSION "0.14.1")
1212

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

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -euo pipefail
44

5-
VERSION=0.14.0
5+
VERSION=0.14.1
66

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

lein-cljfmt/project.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
(defproject dev.weavejester/lein-cljfmt "0.14.0"
1+
(defproject dev.weavejester/lein-cljfmt "0.14.1"
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.14.0"]])
8+
:dependencies [[dev.weavejester/cljfmt "0.14.1"]])

0 commit comments

Comments
 (0)