From d995e0205717a84718c60f6a95a8c47cb0ac3e72 Mon Sep 17 00:00:00 2001 From: Dan Holmsand Date: Thu, 9 Jun 2016 15:51:29 +0200 Subject: [PATCH] Version 0.6.0-rc --- CHANGELOG.md | 2 +- README.md | 4 ++-- examples/geometry/project.clj | 4 ++-- examples/simple/project.clj | 4 ++-- examples/todomvc/project.clj | 4 ++-- project.clj | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 94894ff..3f17a7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ # Changelog -## Upcoming +## 0.6.0-rc - React updated to 15.1.0 diff --git a/README.md b/README.md index 7b80784..0ed8bf0 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/examples/geometry/project.clj b/examples/geometry/project.clj index 4e636a7..b282b48 100644 --- a/examples/geometry/project.clj +++ b/examples/geometry/project.clj @@ -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"] diff --git a/examples/simple/project.clj b/examples/simple/project.clj index d392198..89ec29a 100644 --- a/examples/simple/project.clj +++ b/examples/simple/project.clj @@ -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"] diff --git a/examples/todomvc/project.clj b/examples/todomvc/project.clj index a678e17..7db54fd 100644 --- a/examples/todomvc/project.clj +++ b/examples/todomvc/project.clj @@ -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"] diff --git a/project.clj b/project.clj index e045b3b..caca9af 100644 --- a/project.clj +++ b/project.clj @@ -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"