Skip to content

Commit b8cac74

Browse files
committed
Update CHANGELOG and bump version
1 parent 4a31270 commit b8cac74

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,37 @@ All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44
This change log adheres to standards from [Keep a CHANGELOG](http://keepachangelog.com).
55

6+
## [5.0.0] - 2016-04-17
7+
### Added
8+
* Add `jsx-first-prop-new-line` rule ([#410][] @jseminck)
9+
10+
### Breaking
11+
* Update rules for React 15:
12+
* Add warnings for `LinkedStateMixin`, `ReactPerf.printDOM` and `ReactPerf.getMeasurementsSummaryMap` in `no-deprecated`
13+
* Allow stateless components to return `null` in `prefer-stateless-function`
14+
* Remove SVG attributes warnings ([#490][])
15+
16+
If you're still not using React 15 you can keep the old behavior by setting the React version to `0.14` in the [shared settings](README.md#configuration).
17+
18+
### Fixed
19+
* Rewrite `require-render-return` rule ([#542][], [#543][])
20+
* Fix `prefer-stateless-function` crash ([#544][])
21+
* Fix external propTypes handling ([#545][])
22+
* Do not mark inline functions in JSX as components ([#546][])
23+
24+
### Changed
25+
* Update dependencies
26+
* Documentation improvements
27+
28+
[5.0.0]: https://github.com/yannickcr/eslint-plugin-react/compare/v4.3.0...v5.0.0
29+
[#410]: https://github.com/yannickcr/eslint-plugin-react/issues/410
30+
[#490]: https://github.com/yannickcr/eslint-plugin-react/issues/490
31+
[#542]: https://github.com/yannickcr/eslint-plugin-react/issues/542
32+
[#543]: https://github.com/yannickcr/eslint-plugin-react/issues/543
33+
[#544]: https://github.com/yannickcr/eslint-plugin-react/issues/544
34+
[#545]: https://github.com/yannickcr/eslint-plugin-react/issues/545
35+
[#546]: https://github.com/yannickcr/eslint-plugin-react/issues/546
36+
637
## [4.3.0] - 2016-04-07
738
### Added
839
* Add `require-render-return` rule ([#482][] @shmuga)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-react",
3-
"version": "4.3.0",
3+
"version": "5.0.0",
44
"author": "Yannick Croissant <yannick.croissant+npm@gmail.com>",
55
"description": "React specific linting rules for ESLint",
66
"main": "index.js",

0 commit comments

Comments
 (0)