From 5d1f974130078c15027de56ec96e3d124a4df923 Mon Sep 17 00:00:00 2001 From: Greg Look Date: Sat, 7 Nov 2020 12:21:14 -0800 Subject: [PATCH] Set release version 0.14.0. --- doc/integrations.md | 8 ++++---- project.clj | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/integrations.md b/doc/integrations.md index 31e7471..8c84ca0 100644 --- a/doc/integrations.md +++ b/doc/integrations.md @@ -59,14 +59,14 @@ running the main namespace: :profiles {:cljstyle {:dependencies - [[mvxcvi/cljstyle "0.13.0" :exclusions [org.clojure/clojure]]]}} + [[mvxcvi/cljstyle "0.14.0" :exclusions [org.clojure/clojure]]]}} ``` Alternately, you can run it directly from the command line: ```shell lein update-in :dependencies \ - conj '[mvxcvi/cljstyle "0.13.0" :exclusions [org.clojure/clojure]]' \ + conj '[mvxcvi/cljstyle "0.14.0" :exclusions [org.clojure/clojure]]' \ -- run -m cljstyle.main \ check ``` @@ -78,7 +78,7 @@ If you would like to use `cljstyle` without installing the binary, you can run it directly with `clj`: ```shell -clj -Sdeps '{:deps {mvxcvi/cljstyle {:git/url "https://github.com/greglook/cljstyle.git", :tag "0.13.0"}}}' \ +clj -Sdeps '{:deps {mvxcvi/cljstyle {:git/url "https://github.com/greglook/cljstyle.git", :tag "0.14.0"}}}' \ -m cljstyle.main \ check ``` @@ -97,7 +97,7 @@ style: - run: name: Install cljstyle environment: - CLJSTYLE_VERSION: 0.13.0 + CLJSTYLE_VERSION: 0.14.0 command: | wget https://github.com/greglook/cljstyle/releases/download/${CLJSTYLE_VERSION}/cljstyle_${CLJSTYLE_VERSION}_linux.tar.gz tar -xzf cljstyle_${CLJSTYLE_VERSION}_linux.tar.gz diff --git a/project.clj b/project.clj index fb48595..4ebff0b 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject mvxcvi/cljstyle "0.14.0-SNAPSHOT" +(defproject mvxcvi/cljstyle "0.14.0" :description "A tool for formatting Clojure code" :url "https://github.com/greglook/cljstyle" :license {:name "Eclipse Public License"