From 85ece098b57787aa4625cba2fc027d11cea1fc55 Mon Sep 17 00:00:00 2001 From: Shantanu Kumar Date: Sun, 21 Oct 2012 17:46:50 +0530 Subject: [PATCH] bump version to 0.2.1 --- CHANGES.md | 4 ++++ project.clj | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 8822718..dc919b2 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ # CHANGES and TODO +## 2012-October-21 / 0.2.1 + +* Display namespace when running tests + ## 2012-October-16 / 0.2.0 * Utility functions: `millis-now` `sleep` diff --git a/project.clj b/project.clj index e994320..a1c5ccb 100644 --- a/project.clj +++ b/project.clj @@ -1,11 +1,11 @@ -(defproject clip-test "0.2.0" +(defproject clip-test "0.2.1" :description "Subset of `clojure.test` for Clojure and ClojureScript" :url "https://github.com/kumarshantanu/clip-test" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} ;; :dependencies [[org.clojure/clojure "1.4.0"]] :warn-on-reflection true - :plugins [[lein-cljsbuild "0.2.8"]] + :plugins [[lein-cljsbuild "0.2.9"]] :profiles {:jst {:source-paths ["src" "test"] ;; Enable the lein hooks for: clean, compile, test, and jar ;; :hooks [leiningen.cljsbuild] @@ -23,6 +23,6 @@ :1.2 {:dependencies [[org.clojure/clojure "1.2.1"]]} :1.3 {:dependencies [[org.clojure/clojure "1.3.0"]]} :1.4 {:dependencies [[org.clojure/clojure "1.4.0"]]} - :1.5 {:dependencies [[org.clojure/clojure "1.5.0-alpha6"]]}} + :1.5 {:dependencies [[org.clojure/clojure "1.5.0-alpha7"]]}} :aliases {"all" ["with-profile" "1.2:1.3:1.4:1.5"] "dev" ["with-profile" "1.4,jst"]})