Update everything for v0.5.1

This commit is contained in:
Paul O’Shannessy 2013-10-29 11:26:31 -07:00
parent ef4d7a37f0
commit f3db0006e8
6 changed files with 22 additions and 6 deletions

View File

@ -5,6 +5,7 @@ Ben Alpert <spicyjalapeno@gmail.com>
Ben Newman <bn@cs.stanford.edu>
Brian Rue <brian@rollbar.com>
Cam Spiers <camspiers@gmail.com>
Cat Chen <catchen@fb.com>
Cheng Lou <chenglou92@gmail.com>
Christian Roman <chroman16@gmail.com>
Clay Allsopp <clay.allsopp@gmail.com>
@ -18,6 +19,7 @@ Eric Clemmons <eric@smarterspam.com>
Greg Roodt <groodt@gmail.com>
Harry Hull <harry.hull1@gmail.com>
Hugo Jobling <me@thisishugo.com>
Ian Obermiller <iano@fb.com>
Isaac Salier-Hellendag <isaac@fb.com>
Jakub Malinowski <jakubmal@gmail.com>
James Ide <ide@fb.com>

View File

@ -1,3 +1,17 @@
## 0.5.1 (October 29, 2013)
### React
* Fixed bug with `<input type="range">` 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-`<input>` elements.
### React with Addons
* Fixed bug with transition and animation event detection.
## 0.5.0 (October 16, 2013)
### React

View File

@ -36,12 +36,12 @@ The fastest way to get started is to serve JavaScript from the CDN (also availab
```html
<!-- The core React library -->
<script src="http://fb.me/react-0.5.0.js"></script>
<script src="http://fb.me/react-0.5.1.js"></script>
<!-- In-browser JSX transformer, remove when pre-compiling JSX. -->
<script src="http://fb.me/JSXTransformer-0.5.0.js"></script>
<script src="http://fb.me/JSXTransformer-0.5.1.js"></script>
```
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:

View File

@ -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

View File

@ -1,6 +1,6 @@
{
"name": "react-tools",
"version": "0.5.0",
"version": "0.5.1",
"keywords": [
"react",
"jsx",

View File

@ -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;