From b8cac74f568a9a6541035991f08ac6de0e747a76 Mon Sep 17 00:00:00 2001 From: Yannick Croissant Date: Sun, 17 Apr 2016 19:12:22 +0000 Subject: [PATCH] Update CHANGELOG and bump version --- CHANGELOG.md | 31 +++++++++++++++++++++++++++++++ package.json | 2 +- 2 files changed, 32 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8767d5a133..8077a6a7aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,37 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). This change log adheres to standards from [Keep a CHANGELOG](http://keepachangelog.com). +## [5.0.0] - 2016-04-17 +### Added +* Add `jsx-first-prop-new-line` rule ([#410][] @jseminck) + +### Breaking +* Update rules for React 15: + * Add warnings for `LinkedStateMixin`, `ReactPerf.printDOM` and `ReactPerf.getMeasurementsSummaryMap` in `no-deprecated` + * Allow stateless components to return `null` in `prefer-stateless-function` + * Remove SVG attributes warnings ([#490][]) + +If you're still not using React 15 you can keep the old behavior by setting the React version to `0.14` in the [shared settings](README.md#configuration). + +### Fixed +* Rewrite `require-render-return` rule ([#542][], [#543][]) +* Fix `prefer-stateless-function` crash ([#544][]) +* Fix external propTypes handling ([#545][]) +* Do not mark inline functions in JSX as components ([#546][]) + +### Changed +* Update dependencies +* Documentation improvements + +[5.0.0]: https://github.com/yannickcr/eslint-plugin-react/compare/v4.3.0...v5.0.0 +[#410]: https://github.com/yannickcr/eslint-plugin-react/issues/410 +[#490]: https://github.com/yannickcr/eslint-plugin-react/issues/490 +[#542]: https://github.com/yannickcr/eslint-plugin-react/issues/542 +[#543]: https://github.com/yannickcr/eslint-plugin-react/issues/543 +[#544]: https://github.com/yannickcr/eslint-plugin-react/issues/544 +[#545]: https://github.com/yannickcr/eslint-plugin-react/issues/545 +[#546]: https://github.com/yannickcr/eslint-plugin-react/issues/546 + ## [4.3.0] - 2016-04-07 ### Added * Add `require-render-return` rule ([#482][] @shmuga) diff --git a/package.json b/package.json index ac05d3ed29..80b4ecc47c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eslint-plugin-react", - "version": "4.3.0", + "version": "5.0.0", "author": "Yannick Croissant ", "description": "React specific linting rules for ESLint", "main": "index.js",