Version 0.5.0-alpha

This commit is contained in:
Dan Holmsand 2014-12-10 12:39:30 +01:00
parent 8c2dfafcec
commit 4776799039
5 changed files with 8 additions and 8 deletions

View File

@ -19,7 +19,7 @@ This will setup a new Reagent project with some reasonable defaults, see here fo
To use Reagent in an existing project you add this to your dependencies in `project.clj`: To use Reagent in an existing project you add this to your dependencies in `project.clj`:
[reagent "0.4.3"] [reagent "0.5.0-alpha"]
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.3" (defproject geometry-reagent "0.5.0-alpha"
: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.3"]] [reagent "0.5.0-alpha"]]
: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.3" (defproject simple-reagent "0.5.0-alpha"
: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.3"]] [reagent "0.5.0-alpha"]]
: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.3" (defproject todomvc-reagent "0.5.0-alpha"
: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.3"]] [reagent "0.5.0-alpha"]]
: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.4-SNAPSHOT" (defproject reagent "0.5.0-alpha"
:url "http://github.com/reagent-project/reagent" :url "http://github.com/reagent-project/reagent"
:license {:name "MIT"} :license {:name "MIT"}
:description "A simple ClojureScript interface to React" :description "A simple ClojureScript interface to React"