Skip to content

Commit

Permalink
v0.5.8
Browse files Browse the repository at this point in the history
  • Loading branch information
philoskim committed Nov 19, 2019
1 parent 582f1c9 commit 8f3a8ef
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 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.5.7"]
[philoskim/debux-stubs "0.5.8"]
----


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.5.7"
(defproject philoskim/debux-stubs "0.5.8"
:description "Debux library for production"
:url "https://github.com/philoskim/debux-stubs"
:license {"Eclipse Public License"
Expand Down
1 change: 1 addition & 0 deletions src/debux/core.clj
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
(defmacro dbg [form & opts] form)
(defmacro dbgn [form & opts] form)
(defn dbg-prn [& args])
(defmacro dbg-last [& args] (last args))

;;; macro registering APIs
(defmacro register-macros! [macro-type symbols])
Expand Down
2 changes: 2 additions & 0 deletions src/debux/cs/core.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,11 @@
;;; debugging APIs
(defmacro dbg [form & opts] form)
(defmacro dbgn [form & opts] form)
(defmacro dbg-last [& args] (last args))

(defmacro clog [form & opts] form)
(defmacro clogn [form & opts] form)
(defmacro clog-last [& args] (last args))

(defmacro break [& opts])

Expand Down

0 comments on commit 8f3a8ef

Please sign in to comment.