Skip to content

Commit

Permalink
Release 0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
eldargab committed Oct 12, 2014
1 parent 34df2af commit d448bda
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@

0.0.5 / 2014-10-12
==================

* fix auto-inclusion of `dar/assets` dependency

0.0.4 / 2014-10-12
==================

Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject dar/assets-lein "0.0.4"
(defproject dar/assets-lein "0.0.5"
:description "Leiningen plugin for building assets"
:url "https://github.com/dar-clojure/assets-lein"
:license {:name "Eclipse Public License"
Expand Down
2 changes: 1 addition & 1 deletion src/leiningen/assets/page.clj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
(throw (IllegalArgumentException. "main component is not specified")))
(eval-in-project (-> p
(assoc :eval-in :classloader)
(update-in [:dependencies] cons '[dar/assets "0.0.3"]))
(update-in [:dependencies] conj '[dar/assets "0.0.3"]))
`(do
(util/rmdir ~build-dir)
(assets/build ~main ~build-dir))))
2 changes: 1 addition & 1 deletion src/leiningen/assets/server.clj
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
(check-options opts)
(reset! project (-> p
(assoc :eval-in :classloader)
(update-in [:dependencies] cons '[dar/assets "0.0.3"])))
(update-in [:dependencies] conj '[dar/assets "0.0.3"])))
(reset! options opts)
(run-jetty (-> handle-request wrap-file-info wrap-stacktrace wrap-queue)
{:port (or (:server-port opts) 3000)}))

0 comments on commit d448bda

Please sign in to comment.