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

Commit

Permalink
prep for v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
seancorfield committed Sep 23, 2021
1 parent 6054c0c commit 54e39ae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change Log

* v0.4.0 in progress
* v0.4.0 -- 2012-09-22
* Address #6 by providing `install` task based on `tools.build` (and deprecating `:installer :local` for `deploy` task).
* Update `tools.build` to v0.5.1 21da7d4.

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ your `:build` alias can just be:

```clojure
:build {:deps {io.github.seancorfield/build-clj
{:git/tag "v0.3.1" :git/sha "996ddfa"}}
{:git/tag "v0.4.0" :git/sha "..."}}
:ns-default build}
```

Expand Down
2 changes: 1 addition & 1 deletion src/org/corfield/build.clj
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@
[{:keys [lib version class-dir installer jar-file target] :as opts}]
(assert (and lib version) ":lib and :version are required for deploy")
(when (and installer (not= :remote installer))
(println installer ":installer is deprecated -- use install task for local deployment"))
(println ":installer" installer "is deprecated -- use install task for local deployment"))
(let [target (default-target target)
class-dir (default-class-dir class-dir target)
jar-file (or jar-file (default-jar-file target lib version))]
Expand Down

0 comments on commit 54e39ae

Please sign in to comment.