Version 0.5.1-rc

This commit is contained in:
Dan Holmsand 2015-08-20 20:48:23 +02:00
parent 5be5ace95d
commit b45f84fa71
5 changed files with 9 additions and 9 deletions

View File

@ -17,11 +17,11 @@ 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`:
[reagent "0.5.0"]
[reagent "0.5.1-rc"]
This is all you need to do if you want the standard version of React. If you want the version of React with addons, you'd use something like this instead:
[reagent "0.5.0" :exclusions [cljsjs/react]]
[reagent "0.5.1-rc" :exclusions [cljsjs/react]]
[cljsjs/react-with-addons "0.13.3-0"]
If you want to use your own build of React (or React from a CDN), you have to use `:exclusions` variant of the dependency, and also provide a file named "cljsjs/react.cljs", containing just `(ns cljsjs.react)`, in your project.

View File

@ -1,7 +1,7 @@
(defproject geometry-reagent "0.5.0"
(defproject geometry-reagent "0.5.1-rc"
:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "0.0-3308"]
[reagent "0.5.0"]
[reagent "0.5.1-rc"]
[figwheel "0.3.7"]]
:plugins [[lein-cljsbuild "1.0.6"]

View File

@ -1,8 +1,8 @@
(defproject simple-reagent "0.5.0"
(defproject simple-reagent "0.5.1-rc"
:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "0.0-3308"]
[reagent "0.5.0"]
[reagent "0.5.1-rc"]
[figwheel "0.3.7"]]
:plugins [[lein-cljsbuild "1.0.6"]

View File

@ -1,7 +1,7 @@
(defproject todomvc-reagent "0.5.0"
(defproject todomvc-reagent "0.5.1-rc"
:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "0.0-3308"]
[reagent "0.5.0"]
[reagent "0.5.1-rc"]
[figwheel "0.3.7"]]
:plugins [[lein-cljsbuild "1.0.6"]

View File

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