From e82073d830e0e66018bbd6c98f49b0617cd2fa88 Mon Sep 17 00:00:00 2001 From: Duncan McGreggor Date: Fri, 11 Oct 2019 00:04:31 -0500 Subject: [PATCH] Released 0.4.0. --- lein-ltest/project.clj | 2 +- lein-ltest/src/leiningen/ltest.clj | 2 +- ltest/project.clj | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) 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 {