File tree Expand file tree Collapse file tree 6 files changed +22
-6
lines changed
Expand file tree Collapse file tree 6 files changed +22
-6
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ Ben Alpert <spicyjalapeno@gmail.com>
55Ben Newman <bn@cs.stanford.edu>
66Brian Rue <brian@rollbar.com>
77Cam Spiers <camspiers@gmail.com>
8+ Cat Chen <catchen@fb.com>
89Cheng Lou <chenglou92@gmail.com>
910Christian Roman <chroman16@gmail.com>
1011Clay Allsopp <clay.allsopp@gmail.com>
@@ -18,6 +19,7 @@ Eric Clemmons <eric@smarterspam.com>
1819Greg Roodt <groodt@gmail.com>
1920Harry Hull <harry.hull1@gmail.com>
2021Hugo Jobling <me@thisishugo.com>
22+ Ian Obermiller <iano@fb.com>
2123Isaac Salier-Hellendag <isaac@fb.com>
2224Jakub Malinowski <jakubmal@gmail.com>
2325James Ide <ide@fb.com>
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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
4646If you'd like to use [ bower] ( http://bower.io ) , it's as easy as:
4747
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ redcarpet:
1313pygments : true
1414name : React
1515markdown : redcarpet
16- react_version : 0.5.0
16+ react_version : 0.5.1
1717description : A JavaScript library for building user interfaces
1818relative_permalinks : true
1919paginate : 5
Original file line number Diff line number Diff line change 11{
22 "name" : " react-tools" ,
3- "version" : " 0.5.0 " ,
3+ "version" : " 0.5.1 " ,
44 "keywords" : [
55 " react" ,
66 " jsx" ,
Original file line number Diff line number Diff 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
7171module . exports = React ;
You can’t perform that action at this time.
0 commit comments