Skip to content

Commit f1e86b5

Browse files
committed
Update CHANGELOG and bump version
1 parent ce09993 commit f1e86b5

File tree

2 files changed

+35
-1
lines changed

2 files changed

+35
-1
lines changed

CHANGELOG.md

+34
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,39 @@ 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.4.0-rc.0] - 2017-09-05
7+
### Added
8+
- Add Flow 0.53 support ([#1376][] @jseminck)
9+
- Add [`jsx-curly-brace-presence`][] rule ([#1310][] @jackyho112)
10+
- Add support for Flow IntersectionTypeAnnotation to [`prop-types`][] and [`no-unused-prop-types`][] ([#1364][] [#1323][] @jseminck)
11+
- Add support for Flow TypedArgument to [`no-unsed-prop-types`][] ([#1412][] @jseminck)
12+
- Add support for Flow ClassExpressions to [`prop-types`][] ([#1400][] @jseminck)
13+
- Add support for Flow read-only props to [`no-unused-prop-types`][] ([#1388][] @jseminck)
14+
- Add more tests for [`prop-types`][] and [`no-unused-prop-types`][] ([#1381][] @DianaSuvorova)
15+
16+
### Fixed
17+
- Fix [`no-unused-state`][] to ignore computed property keys ([#1361][] @jackyho112)
18+
- Fix [`no-typos`][] crash ([#1406][] @jseminck)
19+
- Fix [`boolean-prop-naming`][] crash ([#1409][] @EvHaus)
20+
21+
### Changed
22+
- Documentation improvements ([#1392][] @xcatliu, [#1403][] @piperchester)
23+
24+
[7.4.0-rc.0]: https://github.com/yannickcr/eslint-plugin-react/compare/v7.3.0...v7.4.0-rc.0
25+
[#1376]: https://github.com/yannickcr/eslint-plugin-react/issues/1376
26+
[#1310]: https://github.com/yannickcr/eslint-plugin-react/issues/1310
27+
[#1364]: https://github.com/yannickcr/eslint-plugin-react/issues/1364
28+
[#1323]: https://github.com/yannickcr/eslint-plugin-react/issues/1323
29+
[#1412]: https://github.com/yannickcr/eslint-plugin-react/pull/1412
30+
[#1400]: https://github.com/yannickcr/eslint-plugin-react/pull/1400
31+
[#1388]: https://github.com/yannickcr/eslint-plugin-react/issues/1388
32+
[#1381]: https://github.com/yannickcr/eslint-plugin-react/pull/1381
33+
[#1361]: https://github.com/yannickcr/eslint-plugin-react/issues/1361
34+
[#1406]: https://github.com/yannickcr/eslint-plugin-react/pull/1406
35+
[#1409]: https://github.com/yannickcr/eslint-plugin-react/pull/1409
36+
[#1392]: https://github.com/yannickcr/eslint-plugin-react/pull/1392
37+
[#1403]: https://github.com/yannickcr/eslint-plugin-react/pull/1403
38+
639
## [7.3.0] - 2017-08-21
740
### Added
841
* Add checks for `propTypes`, `contextTypes` and `childContextTypes` to [`no-typos`][] ([#213][] @DianaSuvorova)
@@ -1919,3 +1952,4 @@ If you're still not using React 15 you can keep the old behavior by setting the
19191952
[`require-extension`]: docs/rules/require-extension.md
19201953
[`no-comment-textnodes`]: docs/rules/jsx-no-comment-textnodes.md
19211954
[`wrap-multilines`]: docs/rules/jsx-wrap-multilines.md
1955+
[`jsx-curly-brace-presence`]: docs/rules/jsx-curly-brace-presence.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": "7.3.0",
3+
"version": "7.4.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)