Skip to content

Commit d335b1f

Browse files
committed
Update CHANGELOG and bump version
1 parent d97e5f0 commit d335b1f

File tree

2 files changed

+30
-36
lines changed

2 files changed

+30
-36
lines changed

CHANGELOG.md

+29-35
Original file line numberDiff line numberDiff line change
@@ -3,28 +3,41 @@ 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-
## [7.0.0-rc.1] - 2017-05-01
6+
## [7.0.0] - 2017-05-06
77
### Added
8-
* Add `reservedFirst` option to [`jsx-sort-props`][] ([#1134] @MatthewHerbst)
8+
* Add [`no-will-update-set-state`][] rule ([#1139][] @ManThursday)
9+
* Add import and destructuring support to [`no-deprecated`][]
10+
* Add `reservedFirst` option to [`jsx-sort-props`][] ([#1134][] @MatthewHerbst)
911

1012
### Breaking
11-
* Drop Node.js < 4 support ([#1038] @ljharb)
12-
* Add [`no-danger-with-children`][] rule to recommended rules ([#748] @ljharb)
13-
* Add [`no-string-refs`][] rule to recommended rules ([#749] @ljharb)
14-
* Add [`jsx-key`][] rule to recommended rules ([#750] @ljharb)
15-
* Add [`jsx-no-comment-textnodes`][] rule to recommended rules ([#751] @ljharb)
16-
* Add [`jsx-no-target-blank`][] rule to recommended rules ([#752] @ljharb)
17-
* Add [`no-unescaped-entities`][] rule to recommended rules ([#841] @ljharb)
18-
* Add [`no-children-prop`][] rule to recommended rules ([#842] @ljharb)
13+
* Update rules for React 15.5.0:
14+
* Add warnings for `React.PropTypes` and `React.createClass` in [`no-deprecated`][] ([#1148][] @Calyhre)
15+
* Update `createClass` component factory to `createReactClass`. This is used for React component detection, if you still using `React.createClass` use the [shared settings](README.md#configuration) to specify `createClass` as component factory
16+
* Drop Node.js < 4 support ([#1038][] @ljharb)
17+
* Add [`no-danger-with-children`][] rule to recommended rules ([#748][] @ljharb)
18+
* Add [`no-string-refs`][] rule to recommended rules ([#749][] @ljharb)
19+
* Add [`jsx-key`][] rule to recommended rules ([#750][] @ljharb)
20+
* Add [`jsx-no-comment-textnodes`][] rule to recommended rules ([#751][] @ljharb)
21+
* Add [`jsx-no-target-blank`][] rule to recommended rules ([#752][] @ljharb)
22+
* Add [`no-unescaped-entities`][] rule to recommended rules ([#841][] @ljharb)
23+
* Add [`no-children-prop`][] rule to recommended rules ([#842][] @ljharb)
1924
* Remove deprecated [`wrap-multilines`][] rule, use [`jsx-wrap-multilines`][] instead
2025
* Remove deprecated [`no-comment-textnodes`][] rule, use [`jsx-no-comment-textnodes`][] instead
2126
* Remove deprecated [`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
22-
* Deprecate [`jsx-space-before-closing`][] rule, use the [`jsx-tag-spacing`] rule instead. [`jsx-space-before-closing`][] still works but will trigger a warning ([#1070] @afairb)
23-
* [`jsx-first-prop-new-line`][] default is now `multiline-multiprop` ([#802] @kokarn)
24-
* [`jsx-wrap-multilines`] now checks arrow functions without block body. It can be deactivated in [rule options](docs/rules/jsx-wrap-multilines.md#rule-details) ([#790] @ColCh)
25-
* [`jsx-no-undef`] will not check the global scope by default. You can force it with the [`allowGlobals`](docs/rules/jsx-no-undef.md#allowglobals) option ([#1013] @jomasti)
27+
* Deprecate [`jsx-space-before-closing`][] rule, use the [`jsx-tag-spacing`][] rule instead. [`jsx-space-before-closing`][] still works but will trigger a warning ([#1070][] @afairb)
28+
* [`jsx-first-prop-new-line`][] default is now `multiline-multiprop` ([#802][] @kokarn)
29+
* [`jsx-wrap-multilines`][] now checks arrow functions without block body. It can be deactivated in [rule options](docs/rules/jsx-wrap-multilines.md#rule-details) ([#790][] @ColCh)
30+
* [`jsx-no-undef`][] will not check the global scope by default. You can force it with the [`allowGlobals`](docs/rules/jsx-no-undef.md#allowglobals) option ([#1013][] @jomasti)
31+
32+
### Fixed
33+
* Fix [`no-unused-prop-types`][] false positive with `nextProps` ([#1079][] @Kerumen)
34+
* Fix [`prefer-stateless-function`][] to not warn on classes with decorators ([#1034][] @benstepp)
35+
36+
### Changed
37+
* Update dependencies ([#1119][] @danez)
38+
* Documentation improvements ([#1121][] @omerzach, [#1130][] @dreid, [#1131][] @shoesandsocks, [#1149][] @Adzz, [#1151][] @MatthewHerbst, [#1167][] @Slumber86)
2639

27-
[7.0.0-rc.1]: https://github.com/yannickcr/eslint-plugin-react/compare/v7.0.0-rc.0...v7.0.0-rc.1
40+
[7.0.0]: https://github.com/yannickcr/eslint-plugin-react/compare/v6.10.3...v7.0.0
2841
[#1134]: https://github.com/yannickcr/eslint-plugin-react/pull/1134
2942
[#1038]: https://github.com/yannickcr/eslint-plugin-react/pull/1038
3043
[#802]: https://github.com/yannickcr/eslint-plugin-react/pull/802
@@ -38,26 +51,6 @@ This change log adheres to standards from [Keep a CHANGELOG](http://keepachangel
3851
[#752]: https://github.com/yannickcr/eslint-plugin-react/issues/752
3952
[#841]: https://github.com/yannickcr/eslint-plugin-react/issues/841
4053
[#842]: https://github.com/yannickcr/eslint-plugin-react/issues/842
41-
42-
## [7.0.0-rc.0] - 2017-04-23
43-
### Added
44-
* Add [`no-will-update-set-state`][] rule ([#1139] @ManThursday)
45-
* Add import and destructuring support to [`no-deprecated`][]
46-
47-
### Breaking
48-
* Update rules for React 15.5.0:
49-
* Add warnings for `React.PropTypes` and `React.createClass` in [`no-deprecated`][] ([#1148][] @Calyhre)
50-
* Update `createClass` component factory to `createReactClass`. This is used for React component detection, if you still using `React.createClass` use the [shared settings](README.md#configuration) to specify `createClass` as component factory
51-
52-
### Fixed
53-
* Fix [`no-unused-prop-types`][] false positive with `nextProps` ([#1079][] @Kerumen)
54-
* Fix [`prefer-stateless-function`][] to not warn on classes with decorators ([#1034][] @benstepp)
55-
56-
### Changed
57-
* Update dependencies ([#1119][] @danez)
58-
* Documentation improvements ([#1121][] @omerzach, [#1130][] @dreid, [#1131][] @shoesandsocks, [#1149][] @Adzz, [#1151][] @MatthewHerbst)
59-
60-
[7.0.0-rc.0]: https://github.com/yannickcr/eslint-plugin-react/compare/v6.10.3...v7.0.0-rc.0
6154
[#1139]: https://github.com/yannickcr/eslint-plugin-react/pull/1139
6255
[#1148]: https://github.com/yannickcr/eslint-plugin-react/pull/1148
6356
[#1079]: https://github.com/yannickcr/eslint-plugin-react/issues/1079
@@ -68,6 +61,7 @@ This change log adheres to standards from [Keep a CHANGELOG](http://keepachangel
6861
[#1131]: https://github.com/yannickcr/eslint-plugin-react/pull/1131
6962
[#1149]: https://github.com/yannickcr/eslint-plugin-react/pull/1149
7063
[#1151]: https://github.com/yannickcr/eslint-plugin-react/pull/1151
64+
[#1167]: https://github.com/yannickcr/eslint-plugin-react/pull/1167
7165

7266
## [6.10.3] - 2017-03-20
7367
### Fixed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-react",
3-
"version": "7.0.0-rc.1",
3+
"version": "7.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)