Skip to content

Commit 58f88f2

Browse files
committed
Prepare release 0.16.626
1 parent 4719752 commit 58f88f2

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).
88

99
## [Unreleased]
1010

11+
...
12+
13+
14+
## [0.16.626] - 2024-01-06
15+
1116
**WARNING:** this release formally deprecates the `.tar.gz` artifacts in favor
1217
of `.zip` files. Make sure you update any [integrations](doc/integrations.md)
1318
accordingly.
@@ -369,7 +374,8 @@ functionality.
369374
Legacy project release.
370375

371376

372-
[Unreleased]: https://github.com/greglook/cljstyle/compare/0.15.1...HEAD
377+
[Unreleased]: https://github.com/greglook/cljstyle/compare/0.16.626...HEAD
378+
[0.16.626]: https://github.com/greglook/cljstyle/compare/0.15.1...0.16.626
373379
[0.15.1]: https://github.com/greglook/cljstyle/compare/0.15.0...0.15.1
374380
[0.15.0]: https://github.com/greglook/cljstyle/compare/0.14.0...0.15.0
375381
[0.14.0]: https://github.com/greglook/cljstyle/compare/0.13.0...0.14.0

VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.15.0
1+
0.16.626

doc/integrations.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,14 +86,14 @@ running the main namespace:
8686
:profiles
8787
{:cljstyle
8888
{:dependencies
89-
[[mvxcvi/cljstyle "0.15.0" :exclusions [org.clojure/clojure]]]}}
89+
[[mvxcvi/cljstyle "0.16.626" :exclusions [org.clojure/clojure]]]}}
9090
```
9191

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

9494
```shell
9595
lein update-in :dependencies \
96-
conj '[mvxcvi/cljstyle "0.15.0" :exclusions [org.clojure/clojure]]' \
96+
conj '[mvxcvi/cljstyle "0.16.626" :exclusions [org.clojure/clojure]]' \
9797
-- run -m cljstyle.main \
9898
check
9999
```
@@ -105,7 +105,7 @@ If you would like to use `cljstyle` without installing the binary, you can run
105105
it directly with `clj`:
106106

107107
```shell
108-
clj -Sdeps '{:deps {mvxcvi/cljstyle {:mvn/version "0.15.0"}}}' \
108+
clj -Sdeps '{:deps {mvxcvi/cljstyle {:mvn/version "0.16.626"}}}' \
109109
-M -m cljstyle.main \
110110
check
111111
```
@@ -124,7 +124,7 @@ style:
124124
- run:
125125
name: Install cljstyle
126126
environment:
127-
CLJSTYLE_VERSION: 0.15.0
127+
CLJSTYLE_VERSION: 0.16.626
128128
CLJSTYLE_PLATFORM: linux_amd64
129129
command: |
130130
wget https://github.com/greglook/cljstyle/releases/download/${CLJSTYLE_VERSION}/cljstyle_${CLJSTYLE_VERSION}_${CLJSTYLE_PLATFORM}.zip

0 commit comments

Comments
 (0)