Skip to content

Commit 0484d67

Browse files
committed
Bump version for release
1 parent 5b40c3a commit 0484d67

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file. This change
44

55
## [Unreleased]
66

7+
## 0.1.11 / 2024-05-16
8+
79
* Update to Clojure 1.11 to handle ##Inf etc. [#237](https://github.com/clj-commons/kibit/pull/237)
810
* Switch to borkdude/edamame for side-effect free parsing. [#235](https://github.com/clj-commons/kibit/pull/235), [#246](https://github.com/clj-commons/kibit/pull/246)
911
* Correctly gather options-spec require vectors as maps so we can check for :as and :as-alias. [#238](https://github.com/clj-commons/kibit/pull/238)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,15 +148,15 @@ instead of:
148148
Add the following to your aliases
149149

150150
```clojure
151-
:kibit {:extra-deps {jonase/kibit {:mvn/version "0.1.10"}}
151+
:kibit {:extra-deps {jonase/kibit {:mvn/version "0.1.11"}}
152152
:exec-fn kibit.driver/exec
153153
:exec-args {:paths ["."]}}
154154
```
155155

156156
Then run `clojure -X:kibit`. For more options, please see the
157157
docstring on `kibit.driver/exec`.
158158

159-
**NOTE:** At least Clojure v1.9 and Kibit v0.1.10 are required to use this
159+
**NOTE:** At least Clojure v1.9 and Kibit v0.1.11 are required to use this
160160
exec-fn method.
161161

162162
## Usage from inside Emacs

resources/jonase/kibit/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.10
1+
0.1.11

src/kibit/driver.clj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
9797
To make use of this, add an alias, e.g. kibit, to deps.edn:
9898
99-
:kibit {:extra-deps {jonase/kibit {:mvn/version \"0.1.10\"}}
99+
:kibit {:extra-deps {jonase/kibit {:mvn/version \"0.1.11\"}}
100100
:exec-fn kibit.driver/exec
101101
:exec-args {:paths [\"src\" \"test\"]}}
102102
@@ -107,7 +107,7 @@
107107
Additional command-line options can be added in deps.edn or on the
108108
command-line. For example, in deps.edn:
109109
110-
:kibit {:extra-deps {jonase/kibit {:mvn/version \"0.1.10\"}}
110+
:kibit {:extra-deps {jonase/kibit {:mvn/version \"0.1.11\"}}
111111
:exec-fn kibit.driver/exec
112112
:exec-args {:paths [\"src\" \"test\"]
113113
:interactive true}}
@@ -118,7 +118,7 @@
118118
119119
To use [babashka.cli][babashka.cli], update the kibit alias in deps.edn:
120120
121-
:kibit {:extra-deps {jonase/kibit {:mvn/version \"0.1.10\"}}
121+
:kibit {:extra-deps {jonase/kibit {:mvn/version \"0.1.11\"}}
122122
org.babashka/cli {:mvn/version \"0.7.51\"}}
123123
:exec-fn kibit.driver/exec
124124
:exec-args {:paths [\"src\" \"test\"]}

0 commit comments

Comments
 (0)