Skip to content

Commit

Permalink
Release 0.11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
weavejester committed Aug 1, 2023
1 parent 32c1f17 commit fb26b22
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.11.2 (2023-08-01)

- Added `:legacy/merge-indents?` for compatibility with 0.10.x (#316)

## 0.11.1 (2023-07-27)

- Fixed error when cljfmt has no configuration (#313)
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ Use `--help` for a list of all the command-line options.

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

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

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

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

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

```clojure
:plugins [[dev.weavejester/lein-cljfmt "0.11.1"]]
:plugins [[dev.weavejester/lein-cljfmt "0.11.2"]]
```

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

```edn
{:deps {dev.weavejester/cljfmt {:mvn/version "0.11.1"}}}
{:deps {dev.weavejester/cljfmt {:mvn/version "0.11.2"}}}
```

Then use the library:
Expand Down
2 changes: 1 addition & 1 deletion cljfmt/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject dev.weavejester/cljfmt "0.11.1"
(defproject dev.weavejester/cljfmt "0.11.2"
:description "A library for formatting Clojure code"
:url "https://github.com/weavejester/cljfmt"
:scm {:dir ".."}
Expand Down
2 changes: 1 addition & 1 deletion cljfmt/src/cljfmt/main.clj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
[clojure.tools.cli :as cli])
(:gen-class))

(def ^:const VERSION "0.11.1")
(def ^:const VERSION "0.11.2")

(defn- cli-options [defaults]
[["-h" "--help"]
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -euo pipefail

VERSION=0.11.1
VERSION=0.11.2

case $(uname -s) in
Linux*)
Expand Down
4 changes: 2 additions & 2 deletions lein-cljfmt/project.clj
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
(defproject dev.weavejester/lein-cljfmt "0.11.1"
(defproject dev.weavejester/lein-cljfmt "0.11.2"
:description "A library for formatting Clojure code"
:url "https://github.com/weavejester/cljfmt"
:scm {:dir ".."}
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:eval-in-leiningen true
:dependencies [[dev.weavejester/cljfmt "0.11.1"]])
:dependencies [[dev.weavejester/cljfmt "0.11.2"]])

0 comments on commit fb26b22

Please sign in to comment.