From c80db73ebc819769cf2b7c243f6f1740145b36bc Mon Sep 17 00:00:00 2001 From: James Reeves Date: Fri, 19 May 2023 18:36:09 +0100 Subject: [PATCH] Release 0.10.1 --- README.md | 10 +++++----- cljfmt/project.clj | 2 +- lein-cljfmt/project.clj | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index e359e32..a8e080f 100644 --- a/README.md +++ b/README.md @@ -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.0"}' :as cljfmt +clj -Ttools install io.github.weavejester/cljfmt '{:git/tag "0.10.1"}' :as cljfmt ``` To use the tool to check code for formatting errors, run: @@ -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.0"]] +:plugins [[dev.weavejester/lein-cljfmt "0.10.1"]] ``` To use the plugin to check code for formatting errors, run: @@ -82,7 +82,7 @@ your `bb.edn` file: ```edn {:deps - {dev.weavejester/cljfmt {:mvn/version "0.10.0"}} + {dev.weavejester/cljfmt {:mvn/version "0.10.1"}} :tasks {cljfmt {:doc "Run cljfmt" :requires ([cljfmt.main :as fmt]) @@ -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.0"}}} +{:deps {dev.weavejester/cljfmt {:mvn/version "0.10.1"}}} ``` To use cljfmt to check for formatting errors, run: @@ -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.0"}}} +{:deps {dev.weavejester/cljfmt {:mvn/version "0.10.1"}}} ``` Then use the library: diff --git a/cljfmt/project.clj b/cljfmt/project.clj index f7d2342..8aeb950 100644 --- a/cljfmt/project.clj +++ b/cljfmt/project.clj @@ -1,4 +1,4 @@ -(defproject dev.weavejester/cljfmt "0.10.0" +(defproject dev.weavejester/cljfmt "0.10.1" :description "A library for formatting Clojure code" :url "https://github.com/weavejester/cljfmt" :scm {:dir ".."} diff --git a/lein-cljfmt/project.clj b/lein-cljfmt/project.clj index e6b99c8..2a2825e 100644 --- a/lein-cljfmt/project.clj +++ b/lein-cljfmt/project.clj @@ -1,8 +1,8 @@ -(defproject dev.weavejester/lein-cljfmt "0.10.0" +(defproject dev.weavejester/lein-cljfmt "0.10.1" :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.0"]]) + :dependencies [[dev.weavejester/cljfmt "0.10.1"]])