Skip to content

Commit 5551277

Browse files
committed
Upgrade React.js to v0.14.0.
1 parent 9279c2f commit 5551277

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
1+
### v0.2.1 (10 October 2015)
2+
3+
* [UPGRADE] Upgrade React.js to v0.14.0.
4+
15
### v0.2.0 (28 September 2015)
26

37
* [DEPENDENCY] Removed the `classnames` dependency.
48
* [ENHANCEMENT] The `${transitionName}-height` class is only added while the height transition is active.
59
* [ENHANCEMENT] The `ReactCSSTransitionReplace` component require `transitionEnterTimeout` etc. props like `ReactCSSTransitionGroup`.
6-
* [UPGRADE] Upgrade React.js to v0.14.0.
10+
* [UPGRADE] Upgrade React.js to v0.14.0-rc1.
711

812
### v0.1.4 (9 September 2015)
913

package.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,11 @@
1414
"prepublish": "npm run build"
1515
},
1616
"dependencies": {
17-
"fbjs": "^0.2.0",
18-
"react-addons-transition-group": "^0.14.0-rc1"
17+
"react-addons-transition-group": "^0.14.0"
1918
},
2019
"peerDependencies": {
21-
"react": "^0.14.0-rc1",
22-
"react-dom": "^0.14.0-rc1"
20+
"react": "^0.14.0",
21+
"react-dom": "^0.14.0"
2322
},
2423
"devDependencies": {
2524
"babel": "^5.8.23",

src/ReactCSSTransitionReplaceChild.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import React from 'react';
88
import ReactDOM from 'react-dom';
99

10-
import CSSCore from 'fbjs/lib/CSSCore';
10+
import CSSCore from 'react/node_modules/fbjs/lib/CSSCore';
1111
import ReactTransitionEvents from 'react/lib/ReactTransitionEvents';
1212

1313
// We don't remove the element from the DOM until we receive an animationend or

0 commit comments

Comments
 (0)