Skip to content

Commit bf35995

Browse files
committed
Update CHANGELOG and bump version
1 parent 19ece14 commit bf35995

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+
## [6.0.0-rc.0] - 2016-07-29
7+
### Fixed
8+
* Fix spread props cash in `jsx-no-target-blank` ([#679][] @randycoulman)
9+
* Fix `require-optimization` warning on stateless components ([#687][])
10+
* Fix `jsx-uses-vars` that incorrectly marked some variables as used ([#694][] @lencioni)
11+
* Fix `no-unknown-property` check on SVG attributes ([#718][])
12+
* Fix `all` config to not include deprecated rules ([#723][] @pfhayes)
13+
14+
### Breaking
15+
* 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
16+
* Enable `allow-in-func` mode by default in `no-did-mount-set-state` and `no-did-update-set-state` rules ([#702][] @lencioni)
17+
* Enable html tags check by default in `self-closing-comp`
18+
* Remove `pragma` option from `jsx-uses-react`, use the [shared settings](README.md#configuration) to specify a custom pragma ([#700][] @lencioni)
19+
* Remove `react` option from `no-deprecated` rule, use the [shared settings](README.md#configuration) to specify the React version ([#700][] @lencioni)
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+
* Add `require-render-return` rule to recommended rules
23+
24+
### Changed
25+
* Update SVG and DOM attribute list for `no-unknown-property`
26+
* Update rules to use the new ESLint rule format ([#661][] @petersendidit)
27+
* Documentation improvements ([#724][] @lencioni)
28+
29+
[6.0.0-rc.0]: https://github.com/yannickcr/eslint-plugin-react/compare/v6.0.0-alpha.1...v6.0.0-rc.0
30+
[#679]: https://github.com/yannickcr/eslint-plugin-react/pull/679
31+
[#687]: https://github.com/yannickcr/eslint-plugin-react/issues/687
32+
[#694]: https://github.com/yannickcr/eslint-plugin-react/issues/694
33+
[#718]: https://github.com/yannickcr/eslint-plugin-react/issues/718
34+
[#723]: https://github.com/yannickcr/eslint-plugin-react/pull/723
35+
[#702]: https://github.com/yannickcr/eslint-plugin-react/pull/702
36+
[#700]: https://github.com/yannickcr/eslint-plugin-react/pull/700
37+
[#636]: https://github.com/yannickcr/eslint-plugin-react/pull/636
38+
[#596]: https://github.com/yannickcr/eslint-plugin-react/issues/596
39+
[#661]: https://github.com/yannickcr/eslint-plugin-react/issues/661
40+
[#724]: https://github.com/yannickcr/eslint-plugin-react/pull/724
41+
642
## [6.0.0-alpha.2] - 2016-07-24
743
### Added
844
* Add an `all` sharable configuration with all rules enabled ([#674][] @pfhayes)

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": "6.0.0-alpha.2",
3+
"version": "6.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)