diff --git a/README.adoc b/README.adoc index 5282249..428247d 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.7.5"] +[philoskim/debux "0.7.6"] .... and this to your *production* dependencies. [source] .... -[philoskim/debux-stubs "0.7.5"] +[philoskim/debux-stubs "0.7.6"] .... @@ -66,6 +66,10 @@ NOTE: You can see _All change logs since v0.3.0_ https://github.com/philoskim/debux/tree/master/doc/change-logs.adoc[here]. +* v0.7.6 +** Bumps `binaryage/devtools 1.0.2` +** Matched: the fixed version of `philoskim/debux-stubs 0.7.6` + * v0.7.5 ** `set-source-info-mode!` added. See <> for the details. @@ -3384,7 +3388,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.8.0"] [org.clojure/clojurescript "1.10.238"] - [philoskim/debux "0.7.5"]] + [philoskim/debux "0.7.6"]] :plugins [[lein-cljsbuild "1.1.6"] [lein-figwheel "0.5.10"]] :source-paths ["src/clj"] diff --git a/doc/change-logs.adoc b/doc/change-logs.adoc index 134ff51..c1419b1 100644 --- a/doc/change-logs.adoc +++ b/doc/change-logs.adoc @@ -3,6 +3,10 @@ :source-highlighter: coderay :sectnums: +* v0.7.6 +** Bumps `binaryage/devtools 1.0.2` +** Matching with the fixed version of `philoskim/debux-stubs 0.7.6` + * v0.7.5 ** `set-source-info-mode!` added. diff --git a/examples/project.clj b/examples/project.clj index 1b839f7..c45141e 100644 --- a/examples/project.clj +++ b/examples/project.clj @@ -2,7 +2,7 @@ :dependencies [[org.clojure/clojure "1.8.0"] [org.clojure/clojurescript "1.10.238"] [org.clojure/core.async "0.3.465"] - [philoskim/debux "0.7.5"]] + [philoskim/debux "0.7.6"]] :plugins [[lein-cljsbuild "1.1.7"] [lein-figwheel "0.5.18"]] :source-paths ["src/clj" "src/cljc"] diff --git a/project.clj b/project.clj index f7597c2..db68273 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject philoskim/debux "0.7.5" +(defproject philoskim/debux "0.7.6" :description "A trace-based debugging library for Clojure and ClojureScript" :url "https://github.com/philoskim/debux" :license {:name "Eclipse Public License - v 1.0" @@ -6,5 +6,5 @@ :dependencies [[org.clojure/clojure "1.8.0"] [org.clojure/clojurescript "1.10.238"] [clojure-future-spec "1.9.0"] - [binaryage/devtools "1.0.0"]] + [binaryage/devtools "1.0.2"]] :source-paths ["src"])