mirror of
https://github.com/status-im/re-frame.git
synced 2025-02-23 15:28:09 +00:00
Now I really am working on v0.4.0
This commit is contained in:
parent
769723c069
commit
55c563c951
17
CHANGES.md
17
CHANGES.md
@ -1,4 +1,21 @@
|
|||||||
|
|
||||||
|
## Planned for v0.4.0
|
||||||
|
|
||||||
|
- automatically wrap subscriptions in a `reaction` (removing the need for over
|
||||||
|
10 keystrokes per handler!!). Just kidding there are better reasons than that.
|
||||||
|
- further develop the debugging story.
|
||||||
|
- modifiy todoMVC for new subscriptions approach
|
||||||
|
- document new sbscriptions approach
|
||||||
|
- move contents of README across to Wiki. Make Readme simpler and more pragmatic.
|
||||||
|
- produce a more fully featured todomvc (beyond the standard one), todomvc-with-extras
|
||||||
|
- use `enrich` to handle todo duplication
|
||||||
|
- add prismatic schema
|
||||||
|
- show testing
|
||||||
|
- show debug
|
||||||
|
- undo
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## v0.3.1 (2015-04-18)
|
## v0.3.1 (2015-04-18)
|
||||||
|
|
||||||
Various small improvements and bug fixes:
|
Various small improvements and bug fixes:
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
|
|
||||||
(defproject simple-re-frame "0.5.0"
|
(defproject simple-re-frame "0.5.0"
|
||||||
:dependencies [[org.clojure/clojure "1.6.0"]
|
:dependencies [[org.clojure/clojure "1.6.0"]
|
||||||
[org.clojure/clojurescript "0.0-2816"]
|
[org.clojure/clojurescript "0.0-3208"]
|
||||||
[reagent "0.5.0"]
|
[reagent "0.5.0"]
|
||||||
[re-frame "0.3.1"]
|
[re-frame "0.4.0.SNAPSHOT"]
|
||||||
[figwheel "0.2.6"]]
|
[figwheel "0.2.6"]]
|
||||||
|
|
||||||
:plugins [[lein-cljsbuild "1.0.4"]
|
:plugins [[lein-cljsbuild "1.0.4"]
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
(defproject todomvc-re-frame "0.3.1"
|
(defproject todomvc-re-frame "0.3.1"
|
||||||
:dependencies [[org.clojure/clojure "1.6.0"]
|
:dependencies [[org.clojure/clojure "1.6.0"]
|
||||||
[org.clojure/clojurescript "0.0-2816"]
|
[org.clojure/clojurescript "0.0-3208"]
|
||||||
[reagent "0.5.0"]
|
[reagent "0.5.0"]
|
||||||
[re-frame "0.3.1"]
|
[re-frame "0.4.0.SNAPSHOT"]
|
||||||
[secretary "1.2.1"]]
|
[secretary "1.2.1"]]
|
||||||
|
|
||||||
:plugins [[lein-cljsbuild "1.0.4"]]
|
:plugins [[lein-cljsbuild "1.0.4"]]
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
(defproject re-frame "0.3.1"
|
(defproject re-frame "0.4.0.SNAPSHOT"
|
||||||
:description "A Clojurescript MVC-like Framework For Writing SPAs Using Regent."
|
:description "A Clojurescript MVC-like Framework For Writing SPAs Using Regent."
|
||||||
:url "https://github.com/Day8/re-frame.git"
|
:url "https://github.com/Day8/re-frame.git"
|
||||||
:license {:name "MIT"}
|
:license {:name "MIT"}
|
||||||
:dependencies [[org.clojure/clojure "1.6.0"]
|
:dependencies [[org.clojure/clojure "1.6.0"]
|
||||||
[org.clojure/clojurescript "0.0-2760"]
|
[org.clojure/clojurescript "0.0-3208"]
|
||||||
[org.clojure/core.async "0.1.346.0-17112a-alpha"]
|
[org.clojure/core.async "0.1.346.0-17112a-alpha"]
|
||||||
[reagent "0.5.0"]]
|
[reagent "0.5.0"]]
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user