Skip to content

Commit 3aa4fdc

Browse files
committed
Release 0.11.0
1 parent 4039054 commit 3aa4fdc

File tree

6 files changed

+31
-10
lines changed

6 files changed

+31
-10
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 0.11.0 (2023-07-27)
2+
3+
- Breaking change: split `:indents` into `:indents` and `:extra-indents`
4+
- Breaking change: removed `--indents` and `--alias-map` CLI options
5+
- Added `--config` CLI option
6+
- Added `#re` data reader for edn configurations
7+
18
## 0.10.6 (2023-06-30)
29

310
- Added active config file to `--help` text

README.md

+19-5
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,15 @@ 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
22+
23+
The `:indents` key has been split into `:indents` and `:extra-indents`.
24+
The `:indents` key **replaces** all default indents, while the
25+
`:extra-indents` key will **append** to the default indents.
26+
27+
The `--indents` and `--alias-map` keys have been removed from the CLI,
28+
in favor of using a configuration file instead.
29+
2130
## Usage
2231

2332
cljfmt integrates with many existing build tools, or can be used as a
@@ -54,7 +63,7 @@ Use `--help` for a list of all the command-line options.
5463

5564
For persistent configuration, you can use a [configuration file][].
5665

57-
[zipped up binary]: https://github.com/weavejester/cljfmt/releases/download/0.10.6/cljfmt-0.10.6-win-amd64.zip
66+
[zipped up binary]: https://github.com/weavejester/cljfmt/releases/download/0.11.0/cljfmt-0.11.0-win-amd64.zip
5867
[configuration file]: #configuration
5968

6069
### Clojure Tools
@@ -63,7 +72,7 @@ The official Clojure CLI supports installation of thirdparty [tools][].
6372
To install cljfmt as a tool, run:
6473

6574
```bash
66-
clj -Ttools install io.github.weavejester/cljfmt '{:git/tag "0.10.6"}' :as cljfmt
75+
clj -Ttools install io.github.weavejester/cljfmt '{:git/tag "0.11.0"}' :as cljfmt
6776
```
6877

6978
To use the tool to check for formatting errors in your project, run:
@@ -86,7 +95,7 @@ clj -Tcljfmt fix
8695
Leiningen, add the following plugin to your `project.clj` file:
8796

8897
```clojure
89-
:plugins [[dev.weavejester/lein-cljfmt "0.10.6"]]
98+
:plugins [[dev.weavejester/lein-cljfmt "0.11.0"]]
9099
```
91100

92101
To use the plugin to check code for formatting errors, run:
@@ -113,7 +122,7 @@ cljfmt can be run as a library that formats a string of Clojure code.
113122
First, add the dependency:
114123

115124
```edn
116-
{:deps {dev.weavejester/cljfmt {:mvn/version "0.10.6"}}}
125+
{:deps {dev.weavejester/cljfmt {:mvn/version "0.11.0"}}}
117126
```
118127

119128
Then use the library:
@@ -181,7 +190,12 @@ In order to load the standard configuration file from Leiningen, add the
181190

182191
* `:indents` -
183192
a map of var symbols to indentation rules, i.e. `{symbol [& rules]}`.
184-
See [INDENTS.md][] for a complete explanation.
193+
See [INDENTS.md][] for a complete explanation. This will **replace**
194+
the default indents.
195+
196+
* `:extra-indents` -
197+
the same as `:indents`, except that this will **append** to the
198+
default indents.
185199

186200
* `:alias-map` -
187201
a map of namespace alias strings to fully qualified namespace

cljfmt/project.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject dev.weavejester/cljfmt "0.10.6"
1+
(defproject dev.weavejester/cljfmt "0.11.0"
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.10.6")
10+
(def ^:const VERSION "0.11.0")
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.10.6
5+
VERSION=0.11.0
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.10.6"
1+
(defproject dev.weavejester/lein-cljfmt "0.11.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 [[dev.weavejester/cljfmt "0.10.6"]])
8+
:dependencies [[dev.weavejester/cljfmt "0.11.0"]])

0 commit comments

Comments
 (0)