Skip to content

Commit e626566

Browse files
committed
Update CHANGELOG and bump version
1 parent 67053d9 commit e626566

File tree

2 files changed

+50
-1
lines changed

2 files changed

+50
-1
lines changed

CHANGELOG.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,55 @@ 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.2.0] - 2016-06-17
7+
### Added
8+
* Add `require-optimization` rule ([#240][] @EvNaverniouk)
9+
* Add `jsx-filename-extension` rule ([#495][] @lencioni)
10+
* Add `no-render-return-value` rule ([#531][] @iamdustan)
11+
* Add `no-comment-textnodes` rule ([#616][] @benvinegar)
12+
* Add `objectLiterals` option to `jsx-curly-spacing` ([#388][], [#211][] @casesandberg @ljharb)
13+
* Add option to `self-closing-comp` to check html tags ([#572][] @gitim)
14+
* Add `ignore` option to `no-unknown-property` rule ([#631][] @insin)
15+
* Add support for ES7 bind operator to `jsx-handler-names` ([#630][])
16+
* Add support for explicit declaration that class extends React.Component ([#68][] @gausie)
17+
18+
### Fixed
19+
* Fix `jsx-closing-bracket-location` multiline prop support ([#493][] @tuures)
20+
* Fix `prop-types` for props that where not assigned to the right component ([#591][])
21+
* Fix `display-name` when JSON style is used for defining components ([#590][] @gitim)
22+
* Fix `jsx-no-bind` for bind detection in render when assigned to a variable ([#474][] @petersendidit)
23+
* Fix `jsx-curly-spacing` for spread operator ([#606][] @gitim)
24+
* Fix `sort-comp` crash on spread operator ([#624][])
25+
* Fix `prop-types` crash when destructuring props with spread only
26+
27+
### Changed
28+
* Update dependencies
29+
* Add [doctrine](https://github.com/eslint/doctrine) as a dependency ([#68][] @gausie)
30+
* Add [jsx-ast-utils](https://github.com/evcohen/jsx-ast-utils) as a dependency ([#634][] @evcohen)
31+
* Documentation improvements ([#594][] @lencioni, [#598][] @mLuby, [#633][] @appsforartists)
32+
33+
[5.2.0]: https://github.com/yannickcr/eslint-plugin-react/compare/v5.1.1...v5.2.0
34+
[#68]: https://github.com/yannickcr/eslint-plugin-react/issues/68
35+
[#211]: https://github.com/yannickcr/eslint-plugin-react/issues/211
36+
[#240]: https://github.com/yannickcr/eslint-plugin-react/issues/240
37+
[#388]: https://github.com/yannickcr/eslint-plugin-react/issues/388
38+
[#474]: https://github.com/yannickcr/eslint-plugin-react/issues/474
39+
[#493]: https://github.com/yannickcr/eslint-plugin-react/pull/493
40+
[#495]: https://github.com/yannickcr/eslint-plugin-react/issues/495
41+
[#531]: https://github.com/yannickcr/eslint-plugin-react/issues/531
42+
[#572]: https://github.com/yannickcr/eslint-plugin-react/issues/572
43+
[#590]: https://github.com/yannickcr/eslint-plugin-react/issues/590
44+
[#591]: https://github.com/yannickcr/eslint-plugin-react/issues/591
45+
[#594]: https://github.com/yannickcr/eslint-plugin-react/pull/594
46+
[#598]: https://github.com/yannickcr/eslint-plugin-react/pull/598
47+
[#606]: https://github.com/yannickcr/eslint-plugin-react/issues/606
48+
[#616]: https://github.com/yannickcr/eslint-plugin-react/pull/616
49+
[#624]: https://github.com/yannickcr/eslint-plugin-react/issues/624
50+
[#630]: https://github.com/yannickcr/eslint-plugin-react/issues/630
51+
[#631]: https://github.com/yannickcr/eslint-plugin-react/pull/631
52+
[#633]: https://github.com/yannickcr/eslint-plugin-react/pull/633
53+
[#634]: https://github.com/yannickcr/eslint-plugin-react/pull/634
54+
655
## [5.1.1] - 2016-05-10
756
### Fixed
857
* Fix `require-render-return` crash ([#589][])

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": "5.1.1",
3+
"version": "5.2.0",
44
"author": "Yannick Croissant <[email protected]>",
55
"description": "React specific linting rules for ESLint",
66
"main": "index.js",

0 commit comments

Comments
 (0)