Skip to content

Commit 524888c

Browse files
committed
Update CHANGELOG and bump version
1 parent 82b7b40 commit 524888c

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed

CHANGELOG.md

+31
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,36 @@ 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.0] - 2017-04-23
7+
### Added
8+
* Add [`no-will-update-set-state`][] rule ([#1139] @ManThursday)
9+
* Add import and destructuring support to [`no-deprecated`][]
10+
11+
### Breaking
12+
* Update rules for React 15.5.0:
13+
* Add warnings for `React.PropTypes` and `React.createClass` in [`no-deprecated`][] ([#1148][] @Calyhre)
14+
* 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
15+
16+
### Fixed
17+
* Fix [`no-unused-prop-types`][] false positive with `nextProps` ([#1079][] @Kerumen)
18+
* Fix [`prefer-stateless-function`][] to not warn on classes with decorators ([#1034][] @benstepp)
19+
20+
### Changed
21+
* Update dependencies ([#1119][] @danez)
22+
* Documentation improvements ([#1121][] @omerzach, [#1130][] @dreid, [#1131][] @shoesandsocks, [#1149][] @Adzz, [#1151][] @MatthewHerbst)
23+
24+
[7.0.0-rc.0]: https://github.com/yannickcr/eslint-plugin-react/compare/v6.10.3...v7.0.0-rc.0
25+
[#1139]: https://github.com/yannickcr/eslint-plugin-react/pull/1139
26+
[#1148]: https://github.com/yannickcr/eslint-plugin-react/pull/1148
27+
[#1079]: https://github.com/yannickcr/eslint-plugin-react/issues/1079
28+
[#1034]: https://github.com/yannickcr/eslint-plugin-react/issues/1034
29+
[#1119]: https://github.com/yannickcr/eslint-plugin-react/pull/1119
30+
[#1121]: https://github.com/yannickcr/eslint-plugin-react/pull/1121
31+
[#1130]: https://github.com/yannickcr/eslint-plugin-react/pull/1130
32+
[#1131]: https://github.com/yannickcr/eslint-plugin-react/pull/1131
33+
[#1149]: https://github.com/yannickcr/eslint-plugin-react/pull/1149
34+
[#1151]: https://github.com/yannickcr/eslint-plugin-react/pull/1151
35+
636
## [6.10.3] - 2017-03-20
737
### Fixed
838
* Revert [#1057][] due to issues with [`jsx-indent`][] ([#1117][])
@@ -1626,6 +1656,7 @@ If you're still not using React 15 you can keep the old behavior by setting the
16261656
[`no-unescaped-entities`]: docs/rules/no-unescaped-entities.md
16271657
[`no-unknown-property`]: docs/rules/no-unknown-property.md
16281658
[`no-unused-prop-types`]: docs/rules/no-unused-prop-types.md
1659+
[`no-will-update-set-state`]: docs/rules/no-will-update-set-state.md
16291660
[`prefer-es6-class`]: docs/rules/prefer-es6-class.md
16301661
[`prefer-stateless-function`]: docs/rules/prefer-stateless-function.md
16311662
[`prop-types`]: docs/rules/prop-types.md

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

0 commit comments

Comments
 (0)