Skip to content

Commit 4d5faee

Browse files
committed
Update CHANGELOG and bump version
1 parent dfe190b commit 4d5faee

File tree

2 files changed

+37
-1
lines changed

2 files changed

+37
-1
lines changed

CHANGELOG.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,42 @@ 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
7+
### Added
8+
* Add `reservedFirst` option to [`jsx-sort-props`][] ([#1134] @MatthewHerbst)
9+
10+
### 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)
19+
* Remove deprecated [`wrap-multilines`][] rule, use [`jsx-wrap-multilines`][] instead
20+
* Remove deprecated [`no-comment-textnodes`][] rule, use [`jsx-no-comment-textnodes`][] instead
21+
* 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)
26+
27+
[7.0.0-rc.1]: https://github.com/yannickcr/eslint-plugin-react/compare/v7.0.0-rc.0...v7.0.0-rc.1
28+
[#1134]: https://github.com/yannickcr/eslint-plugin-react/pull/1134
29+
[#1038]: https://github.com/yannickcr/eslint-plugin-react/pull/1038
30+
[#802]: https://github.com/yannickcr/eslint-plugin-react/pull/802
31+
[#790]: https://github.com/yannickcr/eslint-plugin-react/issues/790
32+
[#1013]: https://github.com/yannickcr/eslint-plugin-react/pull/1013
33+
[#1070]: https://github.com/yannickcr/eslint-plugin-react/pull/1070
34+
[#748]: https://github.com/yannickcr/eslint-plugin-react/issues/748
35+
[#749]: https://github.com/yannickcr/eslint-plugin-react/issues/749
36+
[#750]: https://github.com/yannickcr/eslint-plugin-react/issues/750
37+
[#751]: https://github.com/yannickcr/eslint-plugin-react/issues/751
38+
[#752]: https://github.com/yannickcr/eslint-plugin-react/issues/752
39+
[#841]: https://github.com/yannickcr/eslint-plugin-react/issues/841
40+
[#842]: https://github.com/yannickcr/eslint-plugin-react/issues/842
41+
642
## [7.0.0-rc.0] - 2017-04-23
743
### Added
844
* Add [`no-will-update-set-state`][] rule ([#1139] @ManThursday)

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

0 commit comments

Comments
 (0)