Skip to content

Commit

Permalink
3.6.0 CLR integration and removed dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
micah-droneup committed Jan 10, 2025
1 parent 8e37dca commit b9add23
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.5.0
3.6.0
2 changes: 1 addition & 1 deletion src/cljc/speclj/config.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit b9add23

Please sign in to comment.