Skip to content
This repository was archived by the owner on Feb 24, 2023. It is now read-only.

Commit 0ffdb4c

Browse files
committed
prep for v0.8.2
1 parent f70637b commit 0ffdb4c

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Change Log
22

3+
* v0.8.2 -- 2022-06-09
4+
* Update `tools.build` to v0.8.2 for `compile-clj` enhancement and dependency updates.
5+
36
* v0.8.0 9bd8b8a -- 2022-03-06
47
* Fix [#18](https://github.com/seancorfield/build-clj/issues/18) by using `resolve-path` from `tools.build`.
58
* This project is now tracking `tools.build` version numbers (v0.8.0) _[I'll figure out a version schema for any releases I make between `tools.build` releases if that actually happens!]_

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ your `:build` alias can just be:
1414

1515
```clojure
1616
:build {:deps {io.github.seancorfield/build-clj
17-
{:git/tag "v0.8.0" :git/sha "9bd8b8a"}}
17+
{:git/tag "v0.8.2" :git/sha "..."}}
1818
:ns-default build}
1919
```
2020

@@ -37,7 +37,7 @@ not building JAR files at all) -- then you can specify a "slim" entry point to
3737

3838
```clojure
3939
:build {:deps {io.github.seancorfield/build-clj
40-
{:git/tag "v0.8.0" :git/sha "9bd8b8a"
40+
{:git/tag "v0.8.2" :git/sha "..."
4141
;; omits deps-deploy dependency:
4242
:deps/root "slim"}}
4343
:ns-default build}

deps.edn

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{:deps
2-
{io.github.clojure/tools.build {:git/tag "v0.8.0" :git/sha "e3e3532"}
2+
{io.github.clojure/tools.build {:git/tag "v0.8.2" :git/sha "ba1a2bf"}
33
io.github.seancorfield/build-uber-log4j2-handler {:git/tag "v0.1.5" :git/sha "55fb6f6"}
44
slipset/deps-deploy {:mvn/version "0.2.0"}}}

slim/deps.edn

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{:deps
22
{io.github.seancorfield/build-clj-slim {:local/root "../"
33
:exclusions [slipset/deps-deploy]}
4-
io.github.clojure/tools.build {:git/tag "v0.8.0" :git/sha "e3e3532"}
4+
io.github.clojure/tools.build {:git/tag "v0.8.2" :git/sha "ba1a2bf"}
55
io.github.seancorfield/build-uber-log4j2-handler {:git/tag "v0.1.5" :git/sha "55fb6f6"}}}

0 commit comments

Comments
 (0)