Version 0.4.2

This commit is contained in:
Dan Holmsand 2014-03-06 13:27:49 +01:00
parent db71fa1770
commit 23ae1661fe
6 changed files with 9 additions and 9 deletions

View File

@ -7,7 +7,7 @@ PROF = dev
CLJSBUILD = client CLJSBUILD = client
CLJSDIRS = src test CLJSDIRS = src test
VERSION = 0.4.1 VERSION = 0.4.2
all: buildrun all: buildrun

View File

@ -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`: To use Reagent you add this to your dependencies in `project.clj`:
[reagent "0.4.1"] [reagent "0.4.2"]
You also need to include react.js itself. One way to do this is to add You also need to include react.js itself. One way to do this is to add

View File

@ -1,9 +1,9 @@
(defproject geometry-reagent "0.4.1" (defproject geometry-reagent "0.4.2"
:dependencies [[org.clojure/clojure "1.5.1"] :dependencies [[org.clojure/clojure "1.5.1"]
[org.clojure/clojurescript "0.0-2173"] [org.clojure/clojurescript "0.0-2173"]
[reagent "0.4.1"]] [reagent "0.4.2"]]
:plugins [[lein-cljsbuild "1.0.2"]] :plugins [[lein-cljsbuild "1.0.2"]]
:hooks [leiningen.cljsbuild] :hooks [leiningen.cljsbuild]
:profiles {:prod {:cljsbuild :profiles {:prod {:cljsbuild

View File

@ -1,9 +1,9 @@
(defproject simple-reagent "0.4.1" (defproject simple-reagent "0.4.2"
:dependencies [[org.clojure/clojure "1.5.1"] :dependencies [[org.clojure/clojure "1.5.1"]
[org.clojure/clojurescript "0.0-2173"] [org.clojure/clojurescript "0.0-2173"]
[reagent "0.4.1"]] [reagent "0.4.2"]]
:plugins [[lein-cljsbuild "1.0.2"]] :plugins [[lein-cljsbuild "1.0.2"]]
:hooks [leiningen.cljsbuild] :hooks [leiningen.cljsbuild]
:profiles {:prod {:cljsbuild :profiles {:prod {:cljsbuild

View File

@ -1,9 +1,9 @@
(defproject todomvc-reagent "0.4.1" (defproject todomvc-reagent "0.4.2"
:dependencies [[org.clojure/clojure "1.5.1"] :dependencies [[org.clojure/clojure "1.5.1"]
[org.clojure/clojurescript "0.0-2173"] [org.clojure/clojurescript "0.0-2173"]
[reagent "0.4.1"]] [reagent "0.4.2"]]
:plugins [[lein-cljsbuild "1.0.2"]] :plugins [[lein-cljsbuild "1.0.2"]]
:hooks [leiningen.cljsbuild] :hooks [leiningen.cljsbuild]
:profiles {:prod {:cljsbuild :profiles {:prod {:cljsbuild

View File

@ -1,5 +1,5 @@
(defproject reagent "0.4.2-SNAPSHOT" (defproject reagent "0.4.2"
:url "http://github.com/holmsand/reagent" :url "http://github.com/holmsand/reagent"
:license {:name "MIT"} :license {:name "MIT"}
:description "A simple ClojureScript interface to React" :description "A simple ClojureScript interface to React"