Version 0.6.0

This commit is contained in:
Dan Holmsand 2016-09-14 20:51:37 +02:00
parent 7f4137b59d
commit c6c1bc16ba
5 changed files with 9 additions and 9 deletions

View File

@ -33,8 +33,8 @@ To use Reagent in an existing project you add this to your dependencies in `proj
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.6.0-rc" :exclusions [cljsjs/react]]
[cljsjs/react-with-addons "15.1.0-0"]
[reagent "0.6.0" :exclusions [cljsjs/react]]
[cljsjs/react-with-addons "15.2.1-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.6.0-rc"
(defproject geometry-reagent "0.6.0"
:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "1.7.107"]
[reagent "0.6.0-rc"]
[reagent "0.6.0"]
[figwheel "0.3.7"]]
:plugins [[lein-cljsbuild "1.0.6"]

View File

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

View File

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

View File

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