From 70adddae37ca0a168f2c2b67bdf0d581c01d662c Mon Sep 17 00:00:00 2001 From: Juho Teperi Date: Sun, 19 Mar 2017 16:49:30 +0200 Subject: [PATCH] Update React to 15.4.2 Related to #289 --- CHANGELOG.md | 8 +++++++- README.md | 2 +- project.clj | 4 ++-- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c7558f..6adbac7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ - # Changelog +## Unreleased + +**[compare](https://github.com/reagent-project/reagent/compare/v0.6.1...master)** + +- React updated to 15.4.2 + - Fixes a problem with `number` inputs, ([#289](https://github.com/reagent-project/reagent/issues/289), [facebook/react#8717](https://github.com/facebook/react/issues/8717)) + ## 0.6.1 (10.3.2017) **[compare](https://github.com/reagent-project/reagent/compare/v0.6.0...v0.6.1)** diff --git a/README.md b/README.md index 0257f68..d008902 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,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.6.0" :exclusions [cljsjs/react]] - [cljsjs/react-with-addons "15.4.0-0"] + [cljsjs/react-with-addons "15.4.2-2"] 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/project.clj b/project.clj index a923a83..6cdb3cd 100644 --- a/project.clj +++ b/project.clj @@ -5,8 +5,8 @@ :dependencies [[org.clojure/clojure "1.8.0"] [org.clojure/clojurescript "1.8.51"] - [cljsjs/react-dom "15.4.0-0"] - [cljsjs/react-dom-server "15.4.0-0"]] + [cljsjs/react-dom "15.4.2-2"] + [cljsjs/react-dom-server "15.4.2-2"]] :plugins [[lein-cljsbuild "1.1.5"] [codox "0.9.0"]]