From 03fda3f1b609ae4ccfc0b45855b6dbfd09ec4a9d Mon Sep 17 00:00:00 2001 From: Yannick Croissant Date: Sat, 7 Nov 2015 18:14:26 +0100 Subject: [PATCH] Update CHANGELOG and bump version --- CHANGELOG.md | 16 ++++++++++++++++ package.json | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 015017ed91..01e19cd25d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,22 @@ 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). +## [3.8.0] - 2015-11-07 +### Added +* Add ignoreStateless option to `no-multi-comp` ([#290][]) + +### Fixed +* Fix classes with properties to always be marked as components ([#291][]) +* Fix ES5 class detection when using `createClass` by itself ([#297][]) +* Fix direct props detection ([#298][]) +* Ignore functions containing the keyword `this` during component detection + +[3.8.0]: https://github.com/yannickcr/eslint-plugin-react/compare/v3.7.1...v3.8.0 +[#290]: https://github.com/yannickcr/eslint-plugin-react/issues/290 +[#291]: https://github.com/yannickcr/eslint-plugin-react/issues/291 +[#297]: https://github.com/yannickcr/eslint-plugin-react/issues/297 +[#298]: https://github.com/yannickcr/eslint-plugin-react/issues/298 + ## [3.7.1] - 2015-11-05 ### Fixed * Fix `sort-comp` crash on stateless components ([#285][]) diff --git a/package.json b/package.json index b35e394c28..8f3916b6d6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eslint-plugin-react", - "version": "3.7.1", + "version": "3.8.0", "author": "Yannick Croissant ", "description": "React specific linting rules for ESLint", "main": "index.js",