Now I really am working on v0.4.0

This commit is contained in:
mike-thompson-day8 2015-04-17 23:49:31 +10:00
parent 769723c069
commit 55c563c951
4 changed files with 23 additions and 6 deletions

View File

@ -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)
Various small improvements and bug fixes:

View File

@ -1,9 +1,9 @@
(defproject simple-re-frame "0.5.0"
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/clojurescript "0.0-2816"]
[org.clojure/clojurescript "0.0-3208"]
[reagent "0.5.0"]
[re-frame "0.3.1"]
[re-frame "0.4.0.SNAPSHOT"]
[figwheel "0.2.6"]]
:plugins [[lein-cljsbuild "1.0.4"]

View File

@ -1,8 +1,8 @@
(defproject todomvc-re-frame "0.3.1"
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/clojurescript "0.0-2816"]
[org.clojure/clojurescript "0.0-3208"]
[reagent "0.5.0"]
[re-frame "0.3.1"]
[re-frame "0.4.0.SNAPSHOT"]
[secretary "1.2.1"]]
:plugins [[lein-cljsbuild "1.0.4"]]

View File

@ -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."
:url "https://github.com/Day8/re-frame.git"
:license {:name "MIT"}
: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"]
[reagent "0.5.0"]]