Skip to content

Commit d995e02

Browse files
committed
Version 0.6.0-rc
1 parent 8d622b1 commit d995e02

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# Changelog
33

4-
## Upcoming
4+
## 0.6.0-rc
55

66
- React updated to 15.1.0
77

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ To use Reagent in an existing project you add this to your dependencies in `proj
3535

3636
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:
3737

38-
[reagent "0.6.0-alpha" :exclusions [cljsjs/react]]
39-
[cljsjs/react-with-addons "0.14.3-0"]
38+
[reagent "0.6.0-rc" :exclusions [cljsjs/react]]
39+
[cljsjs/react-with-addons "15.1.0-0"]
4040

4141
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.
4242

examples/geometry/project.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
(defproject geometry-reagent "0.6.0-alpha"
1+
(defproject geometry-reagent "0.6.0-rc"
22
:dependencies [[org.clojure/clojure "1.7.0"]
33
[org.clojure/clojurescript "1.7.107"]
4-
[reagent "0.6.0-alpha"]
4+
[reagent "0.6.0-rc"]
55
[figwheel "0.3.7"]]
66

77
:plugins [[lein-cljsbuild "1.0.6"]

examples/simple/project.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11

2-
(defproject simple-reagent "0.6.0-alpha"
2+
(defproject simple-reagent "0.6.0-rc"
33
:dependencies [[org.clojure/clojure "1.7.0"]
44
[org.clojure/clojurescript "1.7.107"]
5-
[reagent "0.6.0-alpha"]
5+
[reagent "0.6.0-rc"]
66
[figwheel "0.3.7"]]
77

88
:plugins [[lein-cljsbuild "1.0.6"]

examples/todomvc/project.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
(defproject todomvc-reagent "0.6.0-alpha"
1+
(defproject todomvc-reagent "0.6.0-rc"
22
:dependencies [[org.clojure/clojure "1.7.0"]
33
[org.clojure/clojurescript "1.7.107"]
4-
[reagent "0.6.0-alpha"]
4+
[reagent "0.6.0-rc"]
55
[figwheel "0.3.7"]]
66

77
:plugins [[lein-cljsbuild "1.0.6"]

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject reagent "0.6.0-SNAPSHOT"
1+
(defproject reagent "0.6.0-rc"
22
:url "http://github.com/reagent-project/reagent"
33
:license {:name "MIT"}
44
:description "A simple ClojureScript interface to React"

0 commit comments

Comments
 (0)