Skip to content

Commit f3db000

Browse files
committed
Update everything for v0.5.1
1 parent ef4d7a3 commit f3db000

File tree

6 files changed

+22
-6
lines changed

6 files changed

+22
-6
lines changed

AUTHORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Ben Alpert <[email protected]>
55
Ben Newman <[email protected]>
66
Brian Rue <[email protected]>
77
Cam Spiers <[email protected]>
8+
89
Cheng Lou <[email protected]>
910
Christian Roman <[email protected]>
1011
Clay Allsopp <[email protected]>
@@ -18,6 +19,7 @@ Eric Clemmons <[email protected]>
1819
Greg Roodt <[email protected]>
1920
Harry Hull <[email protected]>
2021
Hugo Jobling <[email protected]>
22+
Ian Obermiller <[email protected]>
2123
Isaac Salier-Hellendag <[email protected]>
2224
Jakub Malinowski <[email protected]>
2325
James Ide <[email protected]>

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 0.5.1 (October 29, 2013)
2+
3+
### React
4+
5+
* Fixed bug with `<input type="range">` and selection events.
6+
* Fixed bug with selection and focus.
7+
* Made it possible to unmount components from the document root.
8+
* Fixed bug for `disabled` attribute handling on non-`<input>` elements.
9+
10+
### React with Addons
11+
12+
* Fixed bug with transition and animation event detection.
13+
14+
115
## 0.5.0 (October 16, 2013)
216

317
### React

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ The fastest way to get started is to serve JavaScript from the CDN (also availab
3636

3737
```html
3838
<!-- The core React library -->
39-
<script src="http://fb.me/react-0.5.0.js"></script>
39+
<script src="http://fb.me/react-0.5.1.js"></script>
4040
<!-- In-browser JSX transformer, remove when pre-compiling JSX. -->
41-
<script src="http://fb.me/JSXTransformer-0.5.0.js"></script>
41+
<script src="http://fb.me/JSXTransformer-0.5.1.js"></script>
4242
```
4343

44-
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.
44+
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.
4545

4646
If you'd like to use [bower](http://bower.io), it's as easy as:
4747

docs/_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ redcarpet:
1313
pygments: true
1414
name: React
1515
markdown: redcarpet
16-
react_version: 0.5.0
16+
react_version: 0.5.1
1717
description: A JavaScript library for building user interfaces
1818
relative_permalinks: true
1919
paginate: 5

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-tools",
3-
"version": "0.5.0",
3+
"version": "0.5.1",
44
"keywords": [
55
"react",
66
"jsx",

src/core/React.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,6 @@ var React = {
6666

6767
// Version exists only in the open-source version of React, not in Facebook's
6868
// internal version.
69-
React.version = '0.5.0';
69+
React.version = '0.5.1';
7070

7171
module.exports = React;

0 commit comments

Comments
 (0)