Skip to content

Commit

Permalink
Bump version for release
Browse files Browse the repository at this point in the history
  • Loading branch information
NoahTheDuke committed May 16, 2024
1 parent 5b40c3a commit 0484d67
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file. This change

## [Unreleased]

## 0.1.11 / 2024-05-16

* Update to Clojure 1.11 to handle ##Inf etc. [#237](https://github.com/clj-commons/kibit/pull/237)
* 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)
* 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)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,15 +148,15 @@ instead of:
Add the following to your aliases

```clojure
:kibit {:extra-deps {jonase/kibit {:mvn/version "0.1.10"}}
:kibit {:extra-deps {jonase/kibit {:mvn/version "0.1.11"}}
:exec-fn kibit.driver/exec
:exec-args {:paths ["."]}}
```

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

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

## Usage from inside Emacs
Expand Down
2 changes: 1 addition & 1 deletion resources/jonase/kibit/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.10
0.1.11
6 changes: 3 additions & 3 deletions src/kibit/driver.clj
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
To make use of this, add an alias, e.g. kibit, to deps.edn:
:kibit {:extra-deps {jonase/kibit {:mvn/version \"0.1.10\"}}
:kibit {:extra-deps {jonase/kibit {:mvn/version \"0.1.11\"}}
:exec-fn kibit.driver/exec
:exec-args {:paths [\"src\" \"test\"]}}
Expand All @@ -107,7 +107,7 @@
Additional command-line options can be added in deps.edn or on the
command-line. For example, in deps.edn:
:kibit {:extra-deps {jonase/kibit {:mvn/version \"0.1.10\"}}
:kibit {:extra-deps {jonase/kibit {:mvn/version \"0.1.11\"}}
:exec-fn kibit.driver/exec
:exec-args {:paths [\"src\" \"test\"]
:interactive true}}
Expand All @@ -118,7 +118,7 @@
To use [babashka.cli][babashka.cli], update the kibit alias in deps.edn:
:kibit {:extra-deps {jonase/kibit {:mvn/version \"0.1.10\"}}
:kibit {:extra-deps {jonase/kibit {:mvn/version \"0.1.11\"}}
org.babashka/cli {:mvn/version \"0.7.51\"}}
:exec-fn kibit.driver/exec
:exec-args {:paths [\"src\" \"test\"]}
Expand Down

0 comments on commit 0484d67

Please sign in to comment.