Skip to content

Commit

Permalink
Release 0.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
weavejester committed May 21, 2023
1 parent 694d5fa commit 3e3a480
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,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.10.1"}' :as cljfmt
clj -Ttools install io.github.weavejester/cljfmt '{:git/tag "0.10.2"}' :as cljfmt
```

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

```clojure
:plugins [[dev.weavejester/lein-cljfmt "0.10.1"]]
:plugins [[dev.weavejester/lein-cljfmt "0.10.2"]]
```

To use the plugin to check code for formatting errors, run:
Expand Down Expand Up @@ -82,7 +82,7 @@ your `bb.edn` file:

```edn
{:deps
{dev.weavejester/cljfmt {:mvn/version "0.10.1"}}
{dev.weavejester/cljfmt {:mvn/version "0.10.2"}}
:tasks
{cljfmt {:doc "Run cljfmt"
:requires ([cljfmt.main :as fmt])
Expand Down Expand Up @@ -110,7 +110,7 @@ cljfmt can also be run as a standalone `-main` application. Do do so,
add the following dependency to your `deps.edn` file or the equivalent:

```edn
{:deps {dev.weavejester/cljfmt {:mvn/version "0.10.1"}}}
{:deps {dev.weavejester/cljfmt {:mvn/version "0.10.2"}}}
```

To use cljfmt to check for formatting errors, run:
Expand All @@ -131,7 +131,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.10.1"}}}
{:deps {dev.weavejester/cljfmt {:mvn/version "0.10.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.10.1"
(defproject dev.weavejester/cljfmt "0.10.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 @@ -6,7 +6,7 @@
[clojure.tools.cli :as cli])
(:gen-class))

(def ^:const VERSION "0.10.1")
(def ^:const VERSION "0.10.2")

(defn- cli-options [defaults]
[["-h" "--help"]
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.10.1"
(defproject dev.weavejester/lein-cljfmt "0.10.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.10.1"]])
:dependencies [[dev.weavejester/cljfmt "0.10.2"]])

0 comments on commit 3e3a480

Please sign in to comment.