From b9add2367713e8d2fa23cc41ab33747b210b915a Mon Sep 17 00:00:00 2001 From: Micah Martin Date: Fri, 10 Jan 2025 14:34:11 -0700 Subject: [PATCH] 3.6.0 CLR integration and removed dependencies --- CHANGES.md | 2 +- VERSION | 2 +- src/cljc/speclj/config.cljc | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index d593a6c..76e5aed 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,4 +1,4 @@ -# Next +# 3.6.0 * Replaces `SpecFailure` and `SpecPending` classes with `ex-info` * Replaces `mmargs` library with a Clojure implementation * Adds support for Clojure CLR diff --git a/VERSION b/VERSION index 1545d96..40c341b 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.5.0 +3.6.0 diff --git a/src/cljc/speclj/config.cljc b/src/cljc/speclj/config.cljc index 467aea3..8420e8f 100644 --- a/src/cljc/speclj/config.cljc +++ b/src/cljc/speclj/config.cljc @@ -112,7 +112,7 @@ (defn with-config "Runs the given function with all the configurations set. Useful in cljs because config-mappings can't be used." [config action] - (binding [*runner* (if (:runner config) (do (println "loading runner in config") (load-runner (:runner config))) (active-runner)) + (binding [*runner* (if (:runner config) (load-runner (:runner config)) (active-runner)) *reporters* (if (:reporters config) (mapv load-reporter (:reporters config)) (active-reporters)) *specs* (:specs config) *color?* (:color config)