Skip to content

Commit

Permalink
Prepare release 0.16.626
Browse files Browse the repository at this point in the history
  • Loading branch information
greglook committed Jan 6, 2024
1 parent 4719752 commit 58f88f2
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

...


## [0.16.626] - 2024-01-06

**WARNING:** this release formally deprecates the `.tar.gz` artifacts in favor
of `.zip` files. Make sure you update any [integrations](doc/integrations.md)
accordingly.
Expand Down Expand Up @@ -369,7 +374,8 @@ functionality.
Legacy project release.


[Unreleased]: https://github.com/greglook/cljstyle/compare/0.15.1...HEAD
[Unreleased]: https://github.com/greglook/cljstyle/compare/0.16.626...HEAD
[0.16.626]: https://github.com/greglook/cljstyle/compare/0.15.1...0.16.626
[0.15.1]: https://github.com/greglook/cljstyle/compare/0.15.0...0.15.1
[0.15.0]: https://github.com/greglook/cljstyle/compare/0.14.0...0.15.0
[0.14.0]: https://github.com/greglook/cljstyle/compare/0.13.0...0.14.0
Expand Down
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.15.0
0.16.626
8 changes: 4 additions & 4 deletions doc/integrations.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,14 +86,14 @@ running the main namespace:
:profiles
{:cljstyle
{:dependencies
[[mvxcvi/cljstyle "0.15.0" :exclusions [org.clojure/clojure]]]}}
[[mvxcvi/cljstyle "0.16.626" :exclusions [org.clojure/clojure]]]}}
```

Alternately, you can run it directly from the command line:

```shell
lein update-in :dependencies \
conj '[mvxcvi/cljstyle "0.15.0" :exclusions [org.clojure/clojure]]' \
conj '[mvxcvi/cljstyle "0.16.626" :exclusions [org.clojure/clojure]]' \
-- run -m cljstyle.main \
check
```
Expand All @@ -105,7 +105,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 {:mvn/version "0.15.0"}}}' \
clj -Sdeps '{:deps {mvxcvi/cljstyle {:mvn/version "0.16.626"}}}' \
-M -m cljstyle.main \
check
```
Expand All @@ -124,7 +124,7 @@ style:
- run:
name: Install cljstyle
environment:
CLJSTYLE_VERSION: 0.15.0
CLJSTYLE_VERSION: 0.16.626
CLJSTYLE_PLATFORM: linux_amd64
command: |
wget https://github.com/greglook/cljstyle/releases/download/${CLJSTYLE_VERSION}/cljstyle_${CLJSTYLE_VERSION}_${CLJSTYLE_PLATFORM}.zip
Expand Down

0 comments on commit 58f88f2

Please # to comment.