Version 0.4.0

This commit is contained in:
Dan Holmsand 2014-02-21 16:31:30 +01:00
parent 0574a235ed
commit 432592955f
6 changed files with 9 additions and 9 deletions

View File

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

View File

@ -9,7 +9,7 @@ React components using (almost) nothing but plain ClojureScript functions.
To use Reagent you add this to your dependencies in `project.clj`:
[reagent "0.3.0"]
[reagent "0.4.0"]
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.1.0"
(defproject geometry-reagent "0.4.0"
:dependencies [[org.clojure/clojure "1.5.1"]
[org.clojure/clojurescript "0.0-2138"]
[reagent "0.4.0-SNAPSHOT"]]
[reagent "0.4.0"]]
:plugins [[lein-cljsbuild "1.0.1"]]
:hooks [leiningen.cljsbuild]
:profiles {:prod {:cljsbuild

View File

@ -1,9 +1,9 @@
(defproject simple-reagent "0.3.0"
(defproject simple-reagent "0.4.0"
:dependencies [[org.clojure/clojure "1.5.1"]
[org.clojure/clojurescript "0.0-2138"]
[reagent "0.3.0"]]
[reagent "0.4.0"]]
:plugins [[lein-cljsbuild "1.0.1"]]
:hooks [leiningen.cljsbuild]
:profiles {:prod {:cljsbuild

View File

@ -1,9 +1,9 @@
(defproject todomvc-reagent "0.3.0"
(defproject todomvc-reagent "0.4.0"
:dependencies [[org.clojure/clojure "1.5.1"]
[org.clojure/clojurescript "0.0-2138"]
[reagent "0.3.0"]]
[reagent "0.4.0"]]
:plugins [[lein-cljsbuild "1.0.1"]]
:hooks [leiningen.cljsbuild]
:profiles {:prod {:cljsbuild

View File

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