Skip to content

Commit

Permalink
v0.7.6
Browse files Browse the repository at this point in the history
  • Loading branch information
philoskim committed Sep 21, 2020
1 parent 6d8f8cb commit 66b4a02
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
10 changes: 7 additions & 3 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
....


Expand All @@ -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 <<source-info-mode, here>> for the details.
Expand Down Expand Up @@ -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"]
Expand Down
4 changes: 4 additions & 0 deletions doc/change-logs.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion examples/project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
4 changes: 2 additions & 2 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
(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"
:url "http://www.eclipse.org/legal/epl-v10.html"}
: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"])

0 comments on commit 66b4a02

Please sign in to comment.