From f3db0006e832e24649278c9e9eab6b9ca2c80336 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20O=E2=80=99Shannessy?= Date: Tue, 29 Oct 2013 11:26:31 -0700 Subject: [PATCH] Update everything for v0.5.1 --- AUTHORS | 2 ++ CHANGELOG.md | 14 ++++++++++++++ README.md | 6 +++--- docs/_config.yml | 2 +- package.json | 2 +- src/core/React.js | 2 +- 6 files changed, 22 insertions(+), 6 deletions(-) diff --git a/AUTHORS b/AUTHORS index 55225b1f6ddd5..20710d524702d 100644 --- a/AUTHORS +++ b/AUTHORS @@ -5,6 +5,7 @@ Ben Alpert Ben Newman Brian Rue Cam Spiers +Cat Chen Cheng Lou Christian Roman Clay Allsopp @@ -18,6 +19,7 @@ Eric Clemmons Greg Roodt Harry Hull Hugo Jobling +Ian Obermiller Isaac Salier-Hellendag Jakub Malinowski James Ide diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f7f4347b5ba8..1a0efebf6252c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +## 0.5.1 (October 29, 2013) + +### React + +* Fixed bug with `` and selection events. +* Fixed bug with selection and focus. +* Made it possible to unmount components from the document root. +* Fixed bug for `disabled` attribute handling on non-`` elements. + +### React with Addons + +* Fixed bug with transition and animation event detection. + + ## 0.5.0 (October 16, 2013) ### React diff --git a/README.md b/README.md index b4912e73eec2e..82420a0f7937c 100644 --- a/README.md +++ b/README.md @@ -36,12 +36,12 @@ The fastest way to get started is to serve JavaScript from the CDN (also availab ```html - + - + ``` -We've also built a [starter kit](http://facebook.github.io/react/downloads/react-0.5.0.zip) which might be useful if this is your first time using React. It includes a webpage with an example of using React with live code. +We've also built a [starter kit](http://facebook.github.io/react/downloads/react-0.5.1.zip) which might be useful if this is your first time using React. It includes a webpage with an example of using React with live code. If you'd like to use [bower](http://bower.io), it's as easy as: diff --git a/docs/_config.yml b/docs/_config.yml index f2e387a363e62..e99f4538a4fc0 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -13,7 +13,7 @@ redcarpet: pygments: true name: React markdown: redcarpet -react_version: 0.5.0 +react_version: 0.5.1 description: A JavaScript library for building user interfaces relative_permalinks: true paginate: 5 diff --git a/package.json b/package.json index 8f24532a4c72e..360c14025b486 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-tools", - "version": "0.5.0", + "version": "0.5.1", "keywords": [ "react", "jsx", diff --git a/src/core/React.js b/src/core/React.js index d9fb81a6497d8..4d479776810e2 100644 --- a/src/core/React.js +++ b/src/core/React.js @@ -66,6 +66,6 @@ var React = { // Version exists only in the open-source version of React, not in Facebook's // internal version. -React.version = '0.5.0'; +React.version = '0.5.1'; module.exports = React;