Skip to content

Commit

Permalink
upgrade tools.namespace dependency.
Browse files Browse the repository at this point in the history
  • Loading branch information
jakemcc committed Jun 21, 2015
1 parent ef49f80 commit 97ee569
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changes

## 1.6.0

- Upgrade to `[org.clojure/tools.namespace "0.2.11"]`. This should
improve reader conditional support.

## 1.5.0

- Printing to stdout no longer suppressed when reloading namespaces.
Expand Down
4 changes: 2 additions & 2 deletions autoexpect/project.clj
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
(defproject lein-autoexpect "1.5.1-SNAPSHOT"
(defproject lein-autoexpect "1.6.0-SNAPSHOT"
:description "Automatically run expecations when a source file changes"
:url "https://github.com/jakemcc/lein-autoexpect"
:developer "Jake McCrary"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/tools.namespace "0.2.10" :exclusions [org.clojure/clojure]]
:dependencies [[org.clojure/tools.namespace "0.2.11" :exclusions [org.clojure/clojure]]
[leinjacker "0.4.2" :exclusions [org.clojure/clojure]]
[jakemcc/clojure-gntp "0.1.1" :exclusions [org.clojure/clojure]]]
:profiles {:dev {:dependencies [[expectations "2.0.6"]]}}
Expand Down
2 changes: 1 addition & 1 deletion autoexpect/src/leiningen/autoexpect.clj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
(:plugins project)))]
(-> project
(deps/add-if-missing dep-specification)
(deps/add-if-missing '[org.clojure/tools.namespace "0.2.10"]))))
(deps/add-if-missing '[org.clojure/tools.namespace "0.2.11"]))))

(defn ^{:help-arglists '([])} autoexpect
"Autoruns expecations on source change
Expand Down

0 comments on commit 97ee569

Please sign in to comment.