Skip to content

Commit

Permalink
still fix updating effect; bump 0.13.8
Browse files Browse the repository at this point in the history
  • Loading branch information
tiye committed Feb 1, 2021
1 parent daf6429 commit 220e169
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Respo: A virtual DOM library in ClojureScript
[![Respo](https://img.shields.io/clojars/v/respo/respo.svg)](https://clojars.org/respo/respo)

```clojure
[respo "0.13.7"]
[respo "0.13.8"]
```

* Home http://respo-mvc.org
Expand Down
6 changes: 3 additions & 3 deletions calcit.cirru
Original file line number Diff line number Diff line change
Expand Up @@ -3509,8 +3509,8 @@
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612169052018) (:text |old-effects)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612169052395)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612169053455) (:text |:effect)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612169054702) (:text |new-tree)
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612171183309) (:text |:effects)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612171099310) (:text |old-tree)
|P $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571584705125)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572505111703) (:text |when-not)
Expand Down Expand Up @@ -8609,7 +8609,7 @@
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586977512) (:text "|\"Task effect")
|x $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586982894) (:text |action)
|y $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885427880) (:text |at-place?)
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612169421760) (:text |;)
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612171403344) (:text |;)
|yT $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572086688548)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572086689200) (:text |case)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "respo",
"version": "0.13.7",
"version": "0.13.8",
"description": "Virtual DOM library",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion release.edn
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{:version "0.13.7",
{:version "0.13.8",
:group-id "respo",
:artifact-id "respo",
:skip-tag true,
Expand Down
2 changes: 1 addition & 1 deletion src/respo/render/effect.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
(defn collect-updating [collect! action coord n-coord old-tree new-tree]
(assert (component? new-tree) "Expected component for updating")
(let [effects (:effects new-tree)
old-effects (:effect new-tree)
old-effects (:effects old-tree)
new-coord (conj coord (:name new-tree))]
(when-not (empty? effects)
(comment js/console.log "collect update" n-coord (:effects new-tree))
Expand Down

0 comments on commit 220e169

Please sign in to comment.