Skip to content

Commit 0882f99

Browse files
committed
Release 0.11.1
1 parent 239c9ff commit 0882f99

File tree

6 files changed

+14
-10
lines changed

6 files changed

+14
-10
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.11.1 (2023-07-27)
2+
3+
- Fixed error when cljfmt has no configuration (#313)
4+
15
## 0.11.0 (2023-07-27)
26

37
- Breaking change: split `:indents` into `:indents` and `:extra-indents`

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -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

2323
The `:indents` key has been split into `:indents` and `:extra-indents`.
2424
The `:indents` key **replaces** all default indents, while the
@@ -63,7 +63,7 @@ Use `--help` for a list of all the command-line options.
6363

6464
For 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][].
7272
To 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

7878
To use the tool to check for formatting errors in your project, run:
@@ -95,7 +95,7 @@ clj -Tcljfmt fix
9595
Leiningen, 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

101101
To 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.
122122
First, 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

128128
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.11.0"
1+
(defproject dev.weavejester/cljfmt "0.11.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
@@ -7,7 +7,7 @@
77
[clojure.tools.cli :as cli])
88
(:gen-class))
99

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

1212
(defn- cli-options [defaults]
1313
[["-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.11.0
5+
VERSION=0.11.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.11.0"
1+
(defproject dev.weavejester/lein-cljfmt "0.11.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.11.0"]])
8+
:dependencies [[dev.weavejester/cljfmt "0.11.1"]])

0 commit comments

Comments
 (0)