Skip to content

Commit

Permalink
Version 0.5.1-rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
holmsand committed Sep 1, 2015
1 parent 41384d5 commit db54d32
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 8 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@

- Simplify examples, taking advantage of new figwheel.

- Better warnings and error messages.


## 0.5.0

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ 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.5.1-rc" :exclusions [cljsjs/react]]
[reagent "0.5.1-rc2" :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.
Expand Down
4 changes: 2 additions & 2 deletions examples/geometry/project.clj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(defproject geometry-reagent "0.5.1-rc"
(defproject geometry-reagent "0.5.1-rc2"
:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "1.7.107"]
[reagent "0.5.1-rc"]
[reagent "0.5.1-rc2"]
[figwheel "0.3.7"]]

:plugins [[lein-cljsbuild "1.0.6"]
Expand Down
4 changes: 2 additions & 2 deletions examples/simple/project.clj
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@

(defproject simple-reagent "0.5.1-rc"
(defproject simple-reagent "0.5.1-rc2"
:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "1.7.107"]
[reagent "0.5.1-rc"]
[reagent "0.5.1-rc2"]
[figwheel "0.3.7"]]

:plugins [[lein-cljsbuild "1.0.6"]
Expand Down
4 changes: 2 additions & 2 deletions examples/todomvc/project.clj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(defproject todomvc-reagent "0.5.1-rc"
(defproject todomvc-reagent "0.5.1-rc2"
:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "1.7.107"]
[reagent "0.5.1-rc"]
[reagent "0.5.1-rc2"]
[figwheel "0.3.7"]]

:plugins [[lein-cljsbuild "1.0.6"]
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject reagent "0.5.1-SNAPSHOT"
(defproject reagent "0.5.1-rc2"
:url "http://github.com/reagent-project/reagent"
:license {:name "MIT"}
:description "A simple ClojureScript interface to React"
Expand Down

0 comments on commit db54d32

Please sign in to comment.