From a6285697040ab1021b24728811bba2c14a8234ee Mon Sep 17 00:00:00 2001 From: James Reeves Date: Mon, 29 May 2023 14:10:39 +0100 Subject: [PATCH] Release 0.10.4 --- README.md | 8 ++++---- cljfmt/project.clj | 2 +- cljfmt/src/cljfmt/main.clj | 2 +- install.sh | 2 +- lein-cljfmt/project.clj | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 46836bf..c1d857d 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,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.10.3/cljfmt-0.10.3-win-amd64.zip +[zipped up binary]: https://github.com/weavejester/cljfmt/releases/download/0.10.4/cljfmt-0.10.4-win-amd64.zip [configuration file]: #configuration ### Clojure Tools @@ -63,7 +63,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.3"}' :as cljfmt +clj -Ttools install io.github.weavejester/cljfmt '{:git/tag "0.10.4"}' :as cljfmt ``` To use the tool to check for formatting errors in your project, run: @@ -86,7 +86,7 @@ clj -Tcljfmt fix Leiningen, add the following plugin to your `project.clj` file: ```clojure -:plugins [[dev.weavejester/lein-cljfmt "0.10.3"]] +:plugins [[dev.weavejester/lein-cljfmt "0.10.4"]] ``` 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. First, add the dependency: ```edn -{:deps {dev.weavejester/cljfmt {:mvn/version "0.10.3"}}} +{:deps {dev.weavejester/cljfmt {:mvn/version "0.10.4"}}} ``` Then use the library: diff --git a/cljfmt/project.clj b/cljfmt/project.clj index f3e4cca..64536fb 100644 --- a/cljfmt/project.clj +++ b/cljfmt/project.clj @@ -1,4 +1,4 @@ -(defproject dev.weavejester/cljfmt "0.10.3" +(defproject dev.weavejester/cljfmt "0.10.4" :description "A library for formatting Clojure code" :url "https://github.com/weavejester/cljfmt" :scm {:dir ".."} diff --git a/cljfmt/src/cljfmt/main.clj b/cljfmt/src/cljfmt/main.clj index 7dbdca9..c5e9be6 100644 --- a/cljfmt/src/cljfmt/main.clj +++ b/cljfmt/src/cljfmt/main.clj @@ -6,7 +6,7 @@ [clojure.tools.cli :as cli]) (:gen-class)) -(def ^:const VERSION "0.10.3") +(def ^:const VERSION "0.10.4") (defn- cli-options [defaults] [["-h" "--help"] diff --git a/install.sh b/install.sh index b6f6ef9..6668209 100644 --- a/install.sh +++ b/install.sh @@ -2,7 +2,7 @@ set -euo pipefail -VERSION=0.10.3 +VERSION=0.10.4 case $(uname -s) in Linux*) diff --git a/lein-cljfmt/project.clj b/lein-cljfmt/project.clj index 38343b4..6cda75b 100644 --- a/lein-cljfmt/project.clj +++ b/lein-cljfmt/project.clj @@ -1,8 +1,8 @@ -(defproject dev.weavejester/lein-cljfmt "0.10.3" +(defproject dev.weavejester/lein-cljfmt "0.10.4" :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.3"]]) + :dependencies [[dev.weavejester/cljfmt "0.10.4"]])