diff --git a/lein-ltest/project.clj b/lein-ltest/project.clj index c1f8948..ec7e695 100644 --- a/lein-ltest/project.clj +++ b/lein-ltest/project.clj @@ -1,4 +1,4 @@ -(defproject lein-ltest "0.4.0-SNAPSHOT" +(defproject lein-ltest "0.4.0" :description "The lein plugin for ltest" :url "https://github.com/clojusc/ltest" :license { diff --git a/lein-ltest/src/leiningen/ltest.clj b/lein-ltest/src/leiningen/ltest.clj index 74e04a9..5cfc00a 100644 --- a/lein-ltest/src/leiningen/ltest.clj +++ b/lein-ltest/src/leiningen/ltest.clj @@ -10,7 +10,7 @@ (def ^:dynamic *exit-after-tests* true) (def ltest-profile - {:dependencies '[[clojusc/ltest "0.4.0-SNAPSHOT"]]}) + {:dependencies '[[clojusc/ltest "0.4.0"]]}) ;; The following three forms are copied from leiningen.test diff --git a/ltest/project.clj b/ltest/project.clj index 5dd4b6c..7d660bd 100644 --- a/ltest/project.clj +++ b/ltest/project.clj @@ -1,4 +1,4 @@ -(defproject clojusc/ltest "0.4.0-SNAPSHOT" +(defproject clojusc/ltest "0.4.0" :description "A custom test runner for clojure.test with detailed, coloured output and summaries" :url "https://github.com/clojusc/ltest" :license { @@ -21,12 +21,12 @@ [lein-kibit "0.1.7"]]} :ltest-examples { :plugins [ - [lein-ltest "0.4.0-SNAPSHOT"]] + [lein-ltest "0.4.0"]] :test-paths ["test" "resources/sample-tests/src"]} :test { :plugins [ [lein-ancient "0.6.15"] - [lein-ltest "0.4.0-SNAPSHOT"]] + [lein-ltest "0.4.0"]] :source-paths [ "resources/sample-tests/src"]} :dev {