Skip to content

Commit 9abc070

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

File tree

2 files changed

+36
-63
lines changed

2 files changed

+36
-63
lines changed

CHANGELOG.md

+35-62
Original file line numberDiff line numberDiff line change
@@ -3,39 +3,54 @@ 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)
29-
* Remove `no-danger` from recommended rules ([#636][] @mjackson)
30-
* Remove `no-did-mount-set-state` and no-did-update-set-state from recommended rules ([#596][])
3119
* Add `require-render-return` rule to recommended rules
20+
* Remove `no-danger` from recommended rules ([#636][] @mjackson)
21+
* Remove `no-did-mount-set-state` and `no-did-update-set-state` from recommended rules ([#596][])
22+
* Remove deprecated `jsx-sort-prop-types` rule, use `sort-prop-types` instead ([#549][] @lencioni)
23+
* Rename `no-comment-textnodes` to `jsx-no-comment-textnodes`. `no-comment-textnodes` still works but will trigger a warning ([#668][] @lencioni)
24+
* Rename `wrap-multilines` to `jsx-wrap-multilines`. `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 spread props cash in `jsx-no-target-blank` ([#679][] @randycoulman)
31+
* Fix `require-optimization` warning on stateless components ([#687][])
32+
* Fix `jsx-uses-vars` that incorrectly marked some variables as used ([#694][] @lencioni)
33+
* Fix `no-unknown-property` check on SVG attributes ([#718][])
34+
* Fix `jsx-no-bind` reporting errors on render functions that don't return JSX ([#663][] @petersendidit)
35+
* Fix `jsx-closing-bracket-location` autofix when `location` is set to `props-aligned` ([#684][] @pfhayes)
36+
* Fix `prop-types` for destructured arguments being assigned to the parent stateless component in some cases ([#698][])
37+
* Fix `prop-types` for JSX return being assigned to the parent function in some cases ([#504][])
38+
* Fix `jsx-curly-spacing` for reporting on JSX content by mistake ([#671][])
39+
* Fix `prop-types` crash when accessing constructor on props ([#654][])
40+
* Fix `jsx-filename-extension` to not check filenames on text input ([#662][] @ljharb)
41+
* Fix `jsx-no-comment-textnodes` incorrectly catching urls ([#664][] @petersendidit)
3242

3343
### Changed
44+
* Only report `jsx-filename-extension` warning once per file ([#660][] @mathieumg)
3445
* Update SVG and DOM attribute list for `no-unknown-property`
3546
* Update rules to use the new ESLint rule format ([#661][] @petersendidit)
47+
* Update dependencies
3648
* Documentation improvements ([#724][] @lencioni)
49+
* Update Travis CI and AppVeyor CI configurations (@ljharb)
3750

38-
[6.0.0-rc.0]: https://github.com/yannickcr/eslint-plugin-react/compare/v6.0.0-alpha.1...v6.0.0-rc.0
51+
[6.0.0]: https://github.com/yannickcr/eslint-plugin-react/compare/v5.2.2...v6.0.0
52+
[#571]: https://github.com/yannickcr/eslint-plugin-react/issues/571
53+
[#728]: https://github.com/yannickcr/eslint-plugin-react/pull/728
3954
[#679]: https://github.com/yannickcr/eslint-plugin-react/pull/679
4055
[#687]: https://github.com/yannickcr/eslint-plugin-react/issues/687
4156
[#694]: https://github.com/yannickcr/eslint-plugin-react/issues/694
@@ -47,32 +62,6 @@ This change log adheres to standards from [Keep a CHANGELOG](http://keepachangel
4762
[#596]: https://github.com/yannickcr/eslint-plugin-react/issues/596
4863
[#661]: https://github.com/yannickcr/eslint-plugin-react/issues/661
4964
[#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
7665
[#674]: https://github.com/yannickcr/eslint-plugin-react/issues/674
7766
[#678]: https://github.com/yannickcr/eslint-plugin-react/issues/678
7867
[#391]: https://github.com/yannickcr/eslint-plugin-react/issues/391
@@ -85,22 +74,6 @@ This change log adheres to standards from [Keep a CHANGELOG](http://keepachangel
8574
[#549]: https://github.com/yannickcr/eslint-plugin-react/issues/549
8675
[#668]: https://github.com/yannickcr/eslint-plugin-react/issues/668
8776
[#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
10477
[#654]: https://github.com/yannickcr/eslint-plugin-react/issues/654
10578
[#662]: https://github.com/yannickcr/eslint-plugin-react/issues/662
10679
[#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)