mirror of https://github.com/status-im/reagent.git
Version 0.4.1
This commit is contained in:
parent
7236b99cd9
commit
e3a67043c9
|
@ -2,6 +2,11 @@
|
|||
# Changelog
|
||||
|
||||
|
||||
## 0.4.1
|
||||
|
||||
- Made Reagent compatible with ClojureScript 0.0-2173. `reagent.core/atom` now implements the necessary IAtom, ISwap and IReset protocols. Reagent should still be compatible with older ClojureScript versions, but you will get a lot of compilation warnings.
|
||||
|
||||
|
||||
## 0.4.0
|
||||
|
||||
- Breaking change: Component functions can get arbitrary arguments, and not just vectors and maps. This is a breaking change, but behaviour is unchanged if you pass a map as the first argument (as in all the examples in the old documentation).
|
||||
|
|
2
Makefile
2
Makefile
|
@ -7,7 +7,7 @@ PROF = dev
|
|||
CLJSBUILD = client
|
||||
CLJSDIRS = src test
|
||||
|
||||
VERSION = 0.4.0
|
||||
VERSION = 0.4.1
|
||||
|
||||
all: buildrun
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@ Reagent provides a way to write efficient React components using (almost) nothin
|
|||
|
||||
To use Reagent you add this to your dependencies in `project.clj`:
|
||||
|
||||
[reagent "0.4.0"]
|
||||
[reagent "0.4.1"]
|
||||
|
||||
You also need to include react.js itself. One way to do this is to add
|
||||
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
|
||||
|
||||
(defproject geometry-reagent "0.4.0"
|
||||
(defproject geometry-reagent "0.4.1"
|
||||
:dependencies [[org.clojure/clojure "1.5.1"]
|
||||
[org.clojure/clojurescript "0.0-2173"]
|
||||
[reagent "0.4.0"]]
|
||||
[reagent "0.4.1"]]
|
||||
:plugins [[lein-cljsbuild "1.0.2"]]
|
||||
:hooks [leiningen.cljsbuild]
|
||||
:profiles {:prod {:cljsbuild
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
|
||||
|
||||
(defproject simple-reagent "0.4.0"
|
||||
(defproject simple-reagent "0.4.1"
|
||||
:dependencies [[org.clojure/clojure "1.5.1"]
|
||||
[org.clojure/clojurescript "0.0-2173"]
|
||||
[reagent "0.4.0"]]
|
||||
[reagent "0.4.1"]]
|
||||
:plugins [[lein-cljsbuild "1.0.2"]]
|
||||
:hooks [leiningen.cljsbuild]
|
||||
:profiles {:prod {:cljsbuild
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
|
||||
|
||||
(defproject todomvc-reagent "0.4.0"
|
||||
(defproject todomvc-reagent "0.4.1"
|
||||
:dependencies [[org.clojure/clojure "1.5.1"]
|
||||
[org.clojure/clojurescript "0.0-2173"]
|
||||
[reagent "0.4.0"]]
|
||||
[reagent "0.4.1"]]
|
||||
:plugins [[lein-cljsbuild "1.0.2"]]
|
||||
:hooks [leiningen.cljsbuild]
|
||||
:profiles {:prod {:cljsbuild
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
(defproject reagent "0.4.0"
|
||||
(defproject reagent "0.4.1"
|
||||
:url "http://github.com/holmsand/reagent"
|
||||
:license {:name "MIT"}
|
||||
:description "A simple ClojureScript interface to React"
|
||||
|
|
Loading…
Reference in New Issue