Skip to content

Commit 5952dbf

Browse files
committed
Update CHANGELOG and bump version
1 parent 17acf24 commit 5952dbf

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,28 @@ 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.7.0] - 2016-11-14
7+
### Added
8+
* Add [`jsx-tag-spacing`][] rule ([#693][] @Kovensky)
9+
10+
### Fixed
11+
* Fix [`jsx-indent`][] for parenthesized ternaries ([#945][] @voxpelli)
12+
* Fix [`jsx-indent`][] for multiline ternaries
13+
* Fix [`jsx-indent`][] for arrays in jsx ([#947][])
14+
* Fix [`no-danger-with-children`][] crash with spread on global variables ([#921][])
15+
* Fix [`jsx-wrap-multilines`][] ternaries handling ([#916][])
16+
17+
### Changed
18+
* Enable [`no-unused-prop-types`] `skipShapeProps` option by default to limit false positive ([#953][] @everdimension)
19+
20+
[6.7.0]: https://github.com/yannickcr/eslint-plugin-react/compare/v6.6.0...v6.7.0
21+
[#693]: https://github.com/yannickcr/eslint-plugin-react/issues/693
22+
[#945]: https://github.com/yannickcr/eslint-plugin-react/issues/945
23+
[#947]: https://github.com/yannickcr/eslint-plugin-react/issues/947
24+
[#921]: https://github.com/yannickcr/eslint-plugin-react/issues/921
25+
[#916]: https://github.com/yannickcr/eslint-plugin-react/issues/916
26+
[#953]: https://github.com/yannickcr/eslint-plugin-react/pull/953
27+
628
## [6.6.0] - 2016-11-06
729
### Added
830
* Add [`jsx-first-prop-new-line`][] auto fix ([#886][] @snowypowers)
@@ -1512,6 +1534,7 @@ If you're still not using React 15 you can keep the old behavior by setting the
15121534
[`jsx-pascal-case`]: docs/rules/jsx-pascal-case.md
15131535
[`jsx-sort-props`]: docs/rules/jsx-sort-props.md
15141536
[`jsx-space-before-closing`]: docs/rules/jsx-space-before-closing.md
1537+
[`jsx-tag-spacing`]: docs/rules/jsx-tag-spacing.md
15151538
[`jsx-uses-react`]: docs/rules/jsx-uses-react.md
15161539
[`jsx-uses-vars`]: docs/rules/jsx-uses-vars.md
15171540
[`jsx-wrap-multilines`]: docs/rules/jsx-wrap-multilines.md

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.6.0",
3+
"version": "6.7.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)