Skip to content

Commit 4d32002

Browse files
committed
Release 0.10.6
1 parent cf7206a commit 4d32002

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

README.md

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

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

57-
[zipped up binary]: https://github.com/weavejester/cljfmt/releases/download/0.10.5/cljfmt-0.10.5-win-amd64.zip
57+
[zipped up binary]: https://github.com/weavejester/cljfmt/releases/download/0.10.6/cljfmt-0.10.6-win-amd64.zip
5858
[configuration file]: #configuration
5959

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

6565
```bash
66-
clj -Ttools install io.github.weavejester/cljfmt '{:git/tag "0.10.5"}' :as cljfmt
66+
clj -Ttools install io.github.weavejester/cljfmt '{:git/tag "0.10.6"}' :as cljfmt
6767
```
6868

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

8888
```clojure
89-
:plugins [[dev.weavejester/lein-cljfmt "0.10.5"]]
89+
:plugins [[dev.weavejester/lein-cljfmt "0.10.6"]]
9090
```
9191

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

115115
```edn
116-
{:deps {dev.weavejester/cljfmt {:mvn/version "0.10.5"}}}
116+
{:deps {dev.weavejester/cljfmt {:mvn/version "0.10.6"}}}
117117
```
118118

119119
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.10.5"
1+
(defproject dev.weavejester/cljfmt "0.10.6"
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
@@ -6,7 +6,7 @@
66
[clojure.tools.cli :as cli])
77
(:gen-class))
88

9-
(def ^:const VERSION "0.10.5")
9+
(def ^:const VERSION "0.10.6")
1010

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

0 commit comments

Comments
 (0)