Skip to content

Commit

Permalink
v0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
philoskim committed Aug 10, 2021
1 parent a93ad82 commit fe075d9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
[listing]
----
[philoskim/debux-stubs "0.8.0"]
[philoskim/debux-stubs "0.8.1"]
----


Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject philoskim/debux-stubs "0.8.0"
(defproject philoskim/debux-stubs "0.8.1"
:description "Debux library for production"
:url "https://github.com/philoskim/debux-stubs"
:license {:name "Eclipse Public License - v 1.0"
Expand Down
2 changes: 1 addition & 1 deletion src/debux/core.clj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
(defmacro dbg-last [& args] (last args))

(defmacro with-level [debug-level & args]
`(when true ~@args))
`(do ~@args))

;;; turn-off versions
(defmacro dbg_ [form & opts] form)
Expand Down
2 changes: 1 addition & 1 deletion src/debux/cs/core.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
(defmacro clog-last [& args] (last args))

(defmacro with-level [debug-level & args]
`(when true ~@args))
`(do ~@args))

(defmacro break [& opts])

Expand Down

0 comments on commit fe075d9

Please sign in to comment.