Skip to content

Commit 679848a

Browse files
marnuswGiraldo Rosales
authored andcommitted
Upgrade React version to 15.0.1.
1 parent 69f013f commit 679848a

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
### v1.2.0-beta (18 April 2016)
2+
3+
* [UPGRADE] Add peer dependency `[email protected]`.
4+
*Note: When adding/removing content completely in rapid successions strange things happen with this change.
5+
(Thus beta status)*
6+
* [ENHANCEMENT] Add a `displayName` field.
7+
18
### v1.1.2 (9 April 2016)
29

310
* [UPGRADE] Use the `object-assign` lib, as [React 15 does](https://github.com/facebook/react/pull/6376), rather

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"browserify": "^11.2.0",
3030
"del": "^2.2.1",
3131
"eslint": "^1.10.3",
32-
"eslint-plugin-react": "^3.5.1",
32+
"eslint-plugin-react": "^3.16.1",
3333
"gulp": "^3.9.1",
3434
"gulp-eslint": "^1.1.1",
3535
"gulp-flatten": "^0.2.0",

src/ReactCSSTransitionReplace.jsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ function createTransitionTimeoutPropValidator(transitionType) {
4040

4141
export default class ReactCSSTransitionReplace extends React.Component {
4242

43+
static displayName = 'ReactCSSTransitionReplace';
44+
4345
static propTypes = {
4446
transitionName: React.PropTypes.oneOfType([React.PropTypes.string, React.PropTypes.shape({
4547
enter: React.PropTypes.string,
@@ -166,7 +168,7 @@ export default class ReactCSSTransitionReplace extends React.Component {
166168

167169
this.setState(state);
168170
}
169-
};
171+
}
170172

171173
_wrapChild(child, moreProps) {
172174
// We need to provide this childFactory so that

0 commit comments

Comments
 (0)