diff --git a/README.adoc b/README.adoc index 94c3aed..8128327 100644 --- a/README.adoc +++ b/README.adoc @@ -49,14 +49,14 @@ To include `debux` in your project for development, simply add the following to [source] .... -[philoskim/debux "0.9.0"] +[philoskim/debux "0.9.1"] .... and this to your *production* dependencies. [source] .... -[philoskim/debux-stubs "0.9.0"] +[philoskim/debux-stubs "0.9.1"] .... @@ -65,9 +65,10 @@ and this to your *production* dependencies. NOTE: You can see _All change logs since v0.3.0_ https://github.com/philoskim/debux/tree/master/doc/change-logs.adoc[here]. -NOTE: The internal links in `*.adoc` in `github.com` doesn't work now. So read -link:https://cljdoc.org/d/philoskim/debux/0.9.0/doc/readme#_recent_change_logs[CLJDOC] -instead, if you want to. +* v0.9.1 +** `:simple` option deprecated. ++ +Instead, use `:fianl` or `:f` option. See the details <>. * v0.9.0 + @@ -83,7 +84,7 @@ link:https://github.com/gnl[George Lipov]. Thanks a lot again! *** `set-tap-output!` function added. *** `set-date-time-fn!` function added. -** `:final` option added. See the details <>. +** `:simple` option added. * v0.8.3 ** link:https://github.com/hyperfiddle/electric[Electric] support added. See the details @@ -101,39 +102,6 @@ link:https://github.com/gnl[George Lipov]. Thanks a lot again! ** `set-debug-level!` removed. Instead, use `with-level` macro. See the details <>. -* v0.7.9 -** `set-debug-level!` and `:level` option added. See the details <>. -** `set-line-bullet!` added. See the details <>. - -* v0.7.8 -** `set-cljs-devtools!` added. See the details <>. -** `cljs-devtools` dependency removed. _Debux_ no longer includes `cljs-devtools` - dependency. - -* v0.7.5 -** `set-source-info-mode!` added. See <> for the details. - -* v0.7.3 -** `pass:q[some->]` and `pass:q[some->>]` support in `dbg` and `clog` added. See - <> for the details. -** `pass:q[cond->]` and `pass:q[cond->>]` support in `dbg` and `clog` added. See - <> for the details. - -* v0.7.1 -** The temporal _turn-off_ version of Debux macros added. See <> - for the details. -** The safe debugging in multi-threads now supported. See -<> for the example. - -** The `:msg` (or `:m`) option added for dynamic message creation. See <> for the details. - -* v0.7.0 -** Tagged literals (`#d/dbg`, `#d/dbgn`, `#d/clog`, `#d/clogn`) added. So you don't have - to wrap the form by the parentheses any more, if you want. See <> for the details. - ## How to use @@ -629,7 +597,7 @@ dbg: (comp inc inc +) => ### Want to see only the final result of the above macros? For example, if you want to see only the final result of the `pass:q[->]`, -Put the option `:final` like this. +Put the option `:final` or `:f` like this. [source] .... @@ -3466,7 +3434,7 @@ The running exampls is under the `examples` subproject folder of this project. .examples/bb.edn .... {:paths ["src/clj"] - :deps {philoskim/debux {:mvn/version "0.9.0"} }} + :deps {philoskim/debux {:mvn/version "0.9.1"} }} .... [listing] @@ -3853,7 +3821,7 @@ an example about running the link:https://github.com/bhauman/lein-figwheel[figwh (defproject examples "0.1.0-SNAPSHOT" :dependencies [[org.clojure/clojure "1.10.0"] [org.clojure/clojurescript "1.10.238"] - [philoskim/debux "0.9.0"]] + [philoskim/debux "0.9.1"]] :plugins [[lein-cljsbuild "1.1.6"] [lein-figwheel "0.5.10"]] :source-paths ["src/clj"] diff --git a/examples/project.clj b/examples/project.clj index 525504e..b4fe681 100644 --- a/examples/project.clj +++ b/examples/project.clj @@ -3,7 +3,7 @@ [org.clojure/clojurescript "1.10.238"] [org.clojure/core.async "0.3.465"] [clojure.java-time "1.3.0"] - [philoskim/debux "0.9.0"]] + [philoskim/debux "0.9.1"]] :source-paths ["src/clj" "src/cljc"] :aot [examples.core] :main examples.core diff --git a/examples/src/cljs/examples/core.cljs b/examples/src/cljs/examples/core.cljs index 1552687..f0ab16d 100644 --- a/examples/src/cljs/examples/core.cljs +++ b/examples/src/cljs/examples/core.cljs @@ -4,8 +4,8 @@ examples.clog examples.dbgn examples.dbg - ; examples.options - ; examples.etc + examples.options + examples.etc ;examples.demo ;examples.lab )) diff --git a/project.clj b/project.clj index 0530389..271741e 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject philoskim/debux "0.9.0" +(defproject philoskim/debux "0.9.1" :description "A trace-based debugging library for Clojure and ClojureScript" :url "https://github.com/philoskim/debux" :license {:name "Eclipse Public License - v 1.0"