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 6, 2024
1 parent b594f30 commit c83f661
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 @@ This changelog is loose. Versions are not semantic, they are incremental. Splint

## Unreleased

## 1.15.1 - 2024-05-06

### Changed

- Updated all rules examples to use "avoid" and "prefer" instead of "bad" and "good". This aligns closer with Splint's perspective on the issues found.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ More explicit instructions can be found in the [installation][installation], [us
### Clojure CLI

```clojure
:aliases {:splint {:extra-deps {io.github.noahtheduke/splint {:mvn/version "1.15.0"}
:aliases {:splint {:extra-deps {io.github.noahtheduke/splint {:mvn/version "1.15.1"}
org.clojure/clojure {:mvn/version "1.11.1"}}
:main-opts ["-m" "noahtheduke.splint"]}}
```
Expand All @@ -32,7 +32,7 @@ Run with `clojure -M:splint [args...]`.
Add this to `project.clj`:

```clojure
:profiles {:dev {:dependencies [[io.github.noahtheduke/splint "1.15.0"]
:profiles {:dev {:dependencies [[io.github.noahtheduke/splint "1.15.1"]
[org.clojure/clojure "1.11.1"]]}}
:aliases {"splint" ["run" "-m" "noahtheduke.splint"]})
```
Expand Down
6 changes: 3 additions & 3 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ When used in a project as a library, put it in an alias to make it easier to inv
## Clojure CLI

```clojure
:aliases {:splint {:extra-deps {io.github.noahtheduke/splint {:mvn/version "1.15.0"}
:aliases {:splint {:extra-deps {io.github.noahtheduke/splint {:mvn/version "1.15.1"}
org.clojure/clojure {:mvn/version "1.11.1"}}
:main-opts ["-m" "noahtheduke.splint"]}}
```
Expand All @@ -17,7 +17,7 @@ Run with `clojure -M:splint [args...]`.
Add this to `project.clj`:

```clojure
:profiles {:dev {:dependencies [[io.github.noahtheduke/splint "1.15.0"]
:profiles {:dev {:dependencies [[io.github.noahtheduke/splint "1.15.1"]
[org.clojure/clojure "1.11.1"]]}}
:aliases {"splint" ["run" "-m" "noahtheduke.splint"]}
```
Expand All @@ -34,7 +34,7 @@ In the meantime, it runs fast on babashka and can be installed using `bbin`:
$ bbin install io.github.noahtheduke/splint
{:coords
#:git{:url "https://github.com/noahtheduke/splint",
:tag "v1.15.0",
:tag "v1.15.1",
:sha "..."},
:lib io.github.noahtheduke/splint}
```
Expand Down
2 changes: 1 addition & 1 deletion resources/SPLINT_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.15.0
1.15.1

0 comments on commit c83f661

Please sign in to comment.