From abcf6cb9e1695d8434701fa229506cda79ae5ca0 Mon Sep 17 00:00:00 2001 From: Dan Holmsand Date: Fri, 11 Sep 2015 16:31:20 +0200 Subject: [PATCH] Version 0.5.1 --- README.md | 2 +- examples/geometry/project.clj | 4 ++-- examples/simple/project.clj | 4 ++-- examples/todomvc/project.clj | 4 ++-- project.clj | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 168d1d5..fec9b56 100644 --- a/README.md +++ b/README.md @@ -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-rc3" :exclusions [cljsjs/react]] + [reagent "0.5.1" :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. diff --git a/examples/geometry/project.clj b/examples/geometry/project.clj index 1204205..838c481 100644 --- a/examples/geometry/project.clj +++ b/examples/geometry/project.clj @@ -1,7 +1,7 @@ -(defproject geometry-reagent "0.5.1-rc3" +(defproject geometry-reagent "0.5.1" :dependencies [[org.clojure/clojure "1.7.0"] [org.clojure/clojurescript "1.7.107"] - [reagent "0.5.1-rc3"] + [reagent "0.5.1"] [figwheel "0.3.7"]] :plugins [[lein-cljsbuild "1.0.6"] diff --git a/examples/simple/project.clj b/examples/simple/project.clj index 965aa40..f299105 100644 --- a/examples/simple/project.clj +++ b/examples/simple/project.clj @@ -1,8 +1,8 @@ -(defproject simple-reagent "0.5.1-rc3" +(defproject simple-reagent "0.5.1" :dependencies [[org.clojure/clojure "1.7.0"] [org.clojure/clojurescript "1.7.107"] - [reagent "0.5.1-rc3"] + [reagent "0.5.1"] [figwheel "0.3.7"]] :plugins [[lein-cljsbuild "1.0.6"] diff --git a/examples/todomvc/project.clj b/examples/todomvc/project.clj index 3465b36..63467df 100644 --- a/examples/todomvc/project.clj +++ b/examples/todomvc/project.clj @@ -1,7 +1,7 @@ -(defproject todomvc-reagent "0.5.1-rc3" +(defproject todomvc-reagent "0.5.1" :dependencies [[org.clojure/clojure "1.7.0"] [org.clojure/clojurescript "1.7.107"] - [reagent "0.5.1-rc3"] + [reagent "0.5.1"] [figwheel "0.3.7"]] :plugins [[lein-cljsbuild "1.0.6"] diff --git a/project.clj b/project.clj index 10f06a3..4383e2f 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject reagent "0.5.1-SNAPSHOT" +(defproject reagent "0.5.1" :url "http://github.com/reagent-project/reagent" :license {:name "MIT"} :description "A simple ClojureScript interface to React"