Skip to content

Commit 8b8fdc1

Browse files
committed
1.1.1 -- Bugfixes
Bump version (1.1.0 uberjar push to clojars didn't turn out the way we had hoped it would--the jar has clj 1.5.1 instead of the expected 1.6.0) Fixes #27 Fixes hoplon/hoplon#36
1 parent 4ff357a commit 8b8fdc1

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

boot-classloader/src/tailrecursion/boot_classloader.clj

+2-5
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,8 @@
2424

2525
(defn transfer-listener
2626
[{type :type meth :method {name :name repo :repository} :resource err :error}]
27-
(when (.endsWith name ".jar")
28-
(case type
29-
:started (warn "Retrieving %s from %s\n" name repo)
30-
(:corrupted :failed) (when err (warn "Error: %s\n" (.getMessage err)))
31-
nil)))
27+
(when (and (.endsWith name ".jar") (= type :started))
28+
(warn "Retrieving %s from %s\n" name repo)))
3229

3330
(defn ^:from-leiningen build-url
3431
"Creates java.net.URL from string"

project.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject tailrecursion/boot "1.1.0"
1+
(defproject tailrecursion/boot "1.1.1"
22
:description "A dependency setup/build tool for Clojure."
33
:url "https://github.com/tailrecursion/boot"
44
:license {:name "Eclipse Public License"

0 commit comments

Comments
 (0)