Skip to content

Commit 9351b16

Browse files
committed
Version 0.6.0-alpha
1 parent 3ec786c commit 9351b16

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Changelog
33

44

5-
## Upcoming
5+
## 0.6.0-alpha
66

77
### Breaking changes
88

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ To use Reagent in an existing project you add this to your dependencies in `proj
2222

2323
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:
2424

25-
[reagent "0.5.1" :exclusions [cljsjs/react]]
25+
[reagent "0.6.0-alpha" :exclusions [cljsjs/react]]
2626
[cljsjs/react-with-addons "0.13.3-0"]
2727

2828
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.

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.5.1"
1+
(defproject geometry-reagent "0.6.0-alpha"
22
:dependencies [[org.clojure/clojure "1.7.0"]
33
[org.clojure/clojurescript "1.7.107"]
4-
[reagent "0.5.1"]
4+
[reagent "0.6.0-alpha"]
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.5.1"
2+
(defproject simple-reagent "0.6.0-alpha"
33
:dependencies [[org.clojure/clojure "1.7.0"]
44
[org.clojure/clojurescript "1.7.107"]
5-
[reagent "0.5.1"]
5+
[reagent "0.6.0-alpha"]
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.5.1"
1+
(defproject todomvc-reagent "0.6.0-alpha"
22
:dependencies [[org.clojure/clojure "1.7.0"]
33
[org.clojure/clojurescript "1.7.107"]
4-
[reagent "0.5.1"]
4+
[reagent "0.6.0-alpha"]
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-alpha"
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)