Skip to content

Commit 5891491

Browse files
committed
Update CHANGELOG and bump version
1 parent 906c96d commit 5891491

File tree

2 files changed

+37
-62
lines changed

2 files changed

+37
-62
lines changed

CHANGELOG.md

+36-61
Original file line numberDiff line numberDiff line change
@@ -3,39 +3,56 @@ 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-
## [6.0.0-rc.1] - 2016-07-31
7-
### Fixed
8-
* Fix `jsx-handler-names` incorrectly flagging `only` ([#571][] @lencioni)
9-
* Fix `wrap-multilines` rule ([#728][] @akozhemiakin)
10-
11-
[6.0.0-rc.1]: https://github.com/yannickcr/eslint-plugin-react/compare/v6.0.0-rc.0...v6.0.0-rc.1
12-
[#571]: https://github.com/yannickcr/eslint-plugin-react/issues/571
13-
[#728]: https://github.com/yannickcr/eslint-plugin-react/pull/728
14-
15-
## [6.0.0-rc.0] - 2016-07-29
16-
### Fixed
17-
* Fix spread props cash in `jsx-no-target-blank` ([#679][] @randycoulman)
18-
* Fix `require-optimization` warning on stateless components ([#687][])
19-
* Fix `jsx-uses-vars` that incorrectly marked some variables as used ([#694][] @lencioni)
20-
* Fix `no-unknown-property` check on SVG attributes ([#718][])
21-
* Fix `all` config to not include deprecated rules ([#723][] @pfhayes)
6+
## [6.0.0] - 2016-08-01
7+
### Added
8+
* Add an `all` sharable configuration with all rules enabled ([#674][] @pfhayes)
9+
* Add `no-find-dom-node` rule ([#678][])
10+
* Add `shorthandFirst` option to `jsx-sort-props` ([#391][] @mathieumg)
11+
* Add `allowDecorators` option to `require-optimization` ([#669][] @Tom910)
2212

2313
### Breaking
24-
* Deprecate `require-extension rule`, use the [eslint-plugin-import](https://github.com/benmosher/eslint-plugin-import) [`extensions`](https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/extensions.md) rule instead
14+
* Deprecate `require-extension` rule, use the [eslint-plugin-import](https://github.com/benmosher/eslint-plugin-import) [`extensions`](https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/extensions.md) rule instead. `require-extension` still works but will trigger a warning
2515
* Enable `allow-in-func` mode by default in `no-did-mount-set-state` and `no-did-update-set-state` rules ([#702][] @lencioni)
2616
* Enable html tags check by default in `self-closing-comp`
2717
* Remove `pragma` option from `jsx-uses-react`, use the [shared settings](README.md#configuration) to specify a custom pragma ([#700][] @lencioni)
2818
* Remove `react` option from `no-deprecated` rule, use the [shared settings](README.md#configuration) to specify the React version ([#700][] @lencioni)
19+
* Add `require-render-return` rule to recommended rules
2920
* Remove `no-danger` from recommended rules ([#636][] @mjackson)
3021
* Remove `no-did-mount-set-state` and no-did-update-set-state from recommended rules ([#596][])
31-
* Add `require-render-return` rule to recommended rules
22+
* Remove deprecated `jsx-sort-prop-types` rule, use `sort-prop-types` instead ([#549][] @lencioni)
23+
* Rename `jsx-no-comment-textnodes` to `no-comment-textnodes`. `jsx-no-comment-textnodes` still works but will trigger a warning ([#668][] @lencioni)
24+
* Rename `jsx-wrap-multilines` to `wrap-multilines`. `jsx-wrap-multilines` still works but will trigger a warning ([#668][] @lencioni)
25+
* Add ESLint as peerDependency ([#657][] @jokeyrhyme)
26+
* Add Node.js 0.10 as minimum required version ([#657][] @jokeyrhyme)
27+
28+
### Fixed
29+
* Fix `jsx-handler-names` incorrectly flagging `only` ([#571][] @lencioni)
30+
* Fix `wrap-multilines` rule ([#728][] @akozhemiakin)
31+
* Fix spread props cash in `jsx-no-target-blank` ([#679][] @randycoulman)
32+
* Fix `require-optimization` warning on stateless components ([#687][])
33+
* Fix `jsx-uses-vars` that incorrectly marked some variables as used ([#694][] @lencioni)
34+
* Fix `no-unknown-property` check on SVG attributes ([#718][])
35+
* Fix `all` config to not include deprecated rules ([#723][] @pfhayes)
36+
* Fix `jsx-no-bind` reporting errors on render functions that don't return JSX ([#663][] @petersendidit)
37+
* Fix `jsx-closing-bracket-location` autofix when `location` is set to `props-aligned` ([#684][] @pfhayes)
38+
* Fix `prop-types` for destructured arguments being assigned to the parent stateless component in some cases ([#698][])
39+
* Fix `prop-types` for JSX return being assigned to the parent function in some cases ([#504][])
40+
* Fix `jsx-curly-spacing` for reporting on JSX content by mistake ([#671][])
41+
* Fix `prop-types` crash when accessing constructor on props ([#654][])
42+
* Fix `jsx-filename-extension` to not check filenames on text input ([#662][] @ljharb)
43+
* Fix `no-comment-textnodes` incorrectly catching urls ([#664][] @petersendidit)
3244

3345
### Changed
46+
* Only report `jsx-filename-extension` warning once per file ([#660][] @mathieumg)
3447
* Update SVG and DOM attribute list for `no-unknown-property`
3548
* Update rules to use the new ESLint rule format ([#661][] @petersendidit)
49+
* Update dependencies
3650
* Documentation improvements ([#724][] @lencioni)
51+
* Update Travis CI and AppVeyor CI configurations (@ljharb)
3752

38-
[6.0.0-rc.0]: https://github.com/yannickcr/eslint-plugin-react/compare/v6.0.0-alpha.1...v6.0.0-rc.0
53+
[6.0.0]: https://github.com/yannickcr/eslint-plugin-react/compare/v5.2.2...v6.0.0
54+
[#571]: https://github.com/yannickcr/eslint-plugin-react/issues/571
55+
[#728]: https://github.com/yannickcr/eslint-plugin-react/pull/728
3956
[#679]: https://github.com/yannickcr/eslint-plugin-react/pull/679
4057
[#687]: https://github.com/yannickcr/eslint-plugin-react/issues/687
4158
[#694]: https://github.com/yannickcr/eslint-plugin-react/issues/694
@@ -47,32 +64,6 @@ This change log adheres to standards from [Keep a CHANGELOG](http://keepachangel
4764
[#596]: https://github.com/yannickcr/eslint-plugin-react/issues/596
4865
[#661]: https://github.com/yannickcr/eslint-plugin-react/issues/661
4966
[#724]: https://github.com/yannickcr/eslint-plugin-react/pull/724
50-
51-
## [6.0.0-alpha.2] - 2016-07-24
52-
### Added
53-
* Add an `all` sharable configuration with all rules enabled ([#674][] @pfhayes)
54-
* Add `no-find-dom-node` rule ([#678][])
55-
* Add `shorthandFirst` option to `jsx-sort-props` ([#391][] @mathieumg)
56-
* Add `allowDecorators` option to `require-optimization` ([#669][] @Tom910)
57-
58-
### Fixed
59-
* Fix `jsx-no-bind` reporting errors on render functions that don't return JSX ([#663][] @petersendidit)
60-
* Fix `jsx-closing-bracket-location` autofix when `location` is set to `props-aligned` ([#684][] @pfhayes)
61-
* Fix `prop-types` for destructured arguments being assigned to the parent stateless component in some cases ([#698][])
62-
* Fix `prop-types` for JSX return being assigned to the parent function in some cases ([#504][])
63-
* Fix `jsx-curly-spacing` for reporting on JSX content by mistake ([#671][])
64-
65-
### Breaking
66-
* Remove deprecated `jsx-sort-prop-types` rule, use `sort-prop-types` instead ([#549][] @lencioni)
67-
* Rename `jsx-no-comment-textnodes` to `no-comment-textnodes`. `jsx-no-comment-textnodes` still works but will trigger a warning ([#668][] @lencioni)
68-
* Rename `jsx-require-extension` to `require-extension`. `jsx-require-extension` still works but will trigger a warning ([#668][] @lencioni)
69-
* Rename `jsx-wrap-multilines` to `wrap-multilines`. `jsx-wrap-multilines` still works but will trigger a warning ([#668][] @lencioni)
70-
71-
### Changed
72-
* Update dependencies
73-
* Only report `jsx-filename-extension` warning once per file ([#660][] @mathieumg)
74-
75-
[6.0.0-alpha.2]: https://github.com/yannickcr/eslint-plugin-react/compare/v6.0.0-alpha.1...v6.0.0-alpha.2
7667
[#674]: https://github.com/yannickcr/eslint-plugin-react/issues/674
7768
[#678]: https://github.com/yannickcr/eslint-plugin-react/issues/678
7869
[#391]: https://github.com/yannickcr/eslint-plugin-react/issues/391
@@ -85,22 +76,6 @@ This change log adheres to standards from [Keep a CHANGELOG](http://keepachangel
8576
[#549]: https://github.com/yannickcr/eslint-plugin-react/issues/549
8677
[#668]: https://github.com/yannickcr/eslint-plugin-react/issues/668
8778
[#660]: https://github.com/yannickcr/eslint-plugin-react/pull/660
88-
89-
## [6.0.0-alpha.1] - 2016-07-08
90-
### Fixed
91-
* Fix `prop-types` crash when accessing constructor on props ([#654][])
92-
* Fix `jsx-filename-extension` to not check filenames on text input ([#662][] @ljharb)
93-
* Fix `no-comment-textnodes` incorrectly catching urls ([#664][] @petersendidit)
94-
95-
### Breaking
96-
* Add ESLint as peerDependency ([#657][] @jokeyrhyme)
97-
* Add Node.js 0.10 as minimum required version ([#657][] @jokeyrhyme)
98-
99-
### Changed
100-
* Update dependencies
101-
* Update Travis CI and AppVeyor CI configurations (@ljharb)
102-
103-
[6.0.0-alpha.1]: https://github.com/yannickcr/eslint-plugin-react/compare/v5.2.2...v6.0.0-alpha.1
10479
[#654]: https://github.com/yannickcr/eslint-plugin-react/issues/654
10580
[#662]: https://github.com/yannickcr/eslint-plugin-react/issues/662
10681
[#664]: https://github.com/yannickcr/eslint-plugin-react/issues/664

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-react",
3-
"version": "6.0.0-rc.1",
3+
"version": "6.0.0",
44
"author": "Yannick Croissant <[email protected]>",
55
"description": "React specific linting rules for ESLint",
66
"main": "index.js",

0 commit comments

Comments
 (0)