Skip to content

Commit 5948d59

Browse files
author
Yannick Croissant
committed
Update CHANGELOG and bump version
1 parent 85cfaea commit 5948d59

File tree

2 files changed

+31
-1
lines changed

2 files changed

+31
-1
lines changed

CHANGELOG.md

+30
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,34 @@ 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.8.0] - 2016-12-05
7+
### Added
8+
* Add [`no-array-index-key`][] rule ([#978][] @lencioni)
9+
* Add [`require-default-props`][] rule ([#528][] @vitorbal)
10+
* Add support for flow variance syntax to [`prop-types`][] ([#961][] @ajhyndman)
11+
12+
### Fixed
13+
* Fix [`jsx-indent`][] with multiline jsx in ternaries ([#966][])
14+
* Fix component detection to ignore async functions ([#989][] @taion)
15+
* Fix [`jsx-curly-spacing`][] autofix to not delete comments ([#648][])
16+
* FIx auto-enabling of `eslint-plugin-react` in exported configurations ([#984][] @jamischarles)
17+
18+
### Changed
19+
* Update dependencies
20+
* Documentation improvements ([#960][] @evilebottnawi, [#973][] @JamesWatling, [#982][] @captbaritone)
21+
22+
[6.8.0]: https://github.com/yannickcr/eslint-plugin-react/compare/v6.7.1...v6.8.0
23+
[#978]: https://github.com/yannickcr/eslint-plugin-react/pull/978
24+
[#528]: https://github.com/yannickcr/eslint-plugin-react/issues/528
25+
[#961]: https://github.com/yannickcr/eslint-plugin-react/issues/961
26+
[#966]: https://github.com/yannickcr/eslint-plugin-react/issues/966
27+
[#989]: https://github.com/yannickcr/eslint-plugin-react/pull/989
28+
[#648]: https://github.com/yannickcr/eslint-plugin-react/issues/648
29+
[#984]: https://github.com/yannickcr/eslint-plugin-react/pull/984
30+
[#960]: https://github.com/yannickcr/eslint-plugin-react/pull/960
31+
[#973]: https://github.com/yannickcr/eslint-plugin-react/pull/973
32+
[#982]: https://github.com/yannickcr/eslint-plugin-react/pull/982
33+
634
## [6.7.1] - 2016-11-15
735
### Fixed
836
* Fix [`jsx-tag-spacing`][] crash when options object isn't passed ([#955][] @daltones)
@@ -1495,6 +1523,7 @@ If you're still not using React 15 you can keep the old behavior by setting the
14951523
[`display-name`]: docs/rules/display-name.md
14961524
[`forbid-component-props`]: docs/rules/forbid-component-props.md
14971525
[`forbid-prop-types`]: docs/rules/forbid-prop-types.md
1526+
[`no-array-index-key`]: docs/rules/no-array-index-key.md
14981527
[`no-children-prop`]: docs/rules/no-children-prop.md
14991528
[`no-danger`]: docs/rules/no-danger.md
15001529
[`no-danger-with-children`]: docs/rules/no-danger-with-children.md
@@ -1539,6 +1568,7 @@ If you're still not using React 15 you can keep the old behavior by setting the
15391568
[`jsx-no-target-blank`]: docs/rules/jsx-no-target-blank.md
15401569
[`jsx-no-undef`]: docs/rules/jsx-no-undef.md
15411570
[`jsx-pascal-case`]: docs/rules/jsx-pascal-case.md
1571+
[`require-default-props`]: docs/rules/require-default-props.md
15421572
[`jsx-sort-props`]: docs/rules/jsx-sort-props.md
15431573
[`jsx-space-before-closing`]: docs/rules/jsx-space-before-closing.md
15441574
[`jsx-tag-spacing`]: docs/rules/jsx-tag-spacing.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.7.1",
3+
"version": "6.8.0",
44
"author": "Yannick Croissant <[email protected]>",
55
"description": "React specific linting rules for ESLint",
66
"main": "index.js",

0 commit comments

Comments
 (0)