mirror of https://github.com/status-im/reagent.git
Version 0.6.0-rc
This commit is contained in:
parent
8d622b120b
commit
d995e02057
|
@ -1,7 +1,7 @@
|
|||
|
||||
# Changelog
|
||||
|
||||
## Upcoming
|
||||
## 0.6.0-rc
|
||||
|
||||
- React updated to 15.1.0
|
||||
|
||||
|
|
|
@ -35,8 +35,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-alpha" :exclusions [cljsjs/react]]
|
||||
[cljsjs/react-with-addons "0.14.3-0"]
|
||||
[reagent "0.6.0-rc" :exclusions [cljsjs/react]]
|
||||
[cljsjs/react-with-addons "15.1.0-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.
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
(defproject geometry-reagent "0.6.0-alpha"
|
||||
(defproject geometry-reagent "0.6.0-rc"
|
||||
:dependencies [[org.clojure/clojure "1.7.0"]
|
||||
[org.clojure/clojurescript "1.7.107"]
|
||||
[reagent "0.6.0-alpha"]
|
||||
[reagent "0.6.0-rc"]
|
||||
[figwheel "0.3.7"]]
|
||||
|
||||
:plugins [[lein-cljsbuild "1.0.6"]
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
|
||||
(defproject simple-reagent "0.6.0-alpha"
|
||||
(defproject simple-reagent "0.6.0-rc"
|
||||
:dependencies [[org.clojure/clojure "1.7.0"]
|
||||
[org.clojure/clojurescript "1.7.107"]
|
||||
[reagent "0.6.0-alpha"]
|
||||
[reagent "0.6.0-rc"]
|
||||
[figwheel "0.3.7"]]
|
||||
|
||||
:plugins [[lein-cljsbuild "1.0.6"]
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
(defproject todomvc-reagent "0.6.0-alpha"
|
||||
(defproject todomvc-reagent "0.6.0-rc"
|
||||
:dependencies [[org.clojure/clojure "1.7.0"]
|
||||
[org.clojure/clojurescript "1.7.107"]
|
||||
[reagent "0.6.0-alpha"]
|
||||
[reagent "0.6.0-rc"]
|
||||
[figwheel "0.3.7"]]
|
||||
|
||||
:plugins [[lein-cljsbuild "1.0.6"]
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
(defproject reagent "0.6.0-SNAPSHOT"
|
||||
(defproject reagent "0.6.0-rc"
|
||||
:url "http://github.com/reagent-project/reagent"
|
||||
:license {:name "MIT"}
|
||||
:description "A simple ClojureScript interface to React"
|
||||
|
|
Loading…
Reference in New Issue