From d7c3ad2da2e51f4e184f5ef10d1bcadc84666d35 Mon Sep 17 00:00:00 2001 From: Yannick Croissant Date: Sun, 24 Jan 2016 15:14:51 +0000 Subject: [PATCH] Update CHANGELOG and bump version --- CHANGELOG.md | 23 +++++++++++++++++++++++ package.json | 2 +- 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index caf3712ab7..e25903d059 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,29 @@ 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.16.0] - 2016-01-24 +### Added +* Add `jsx-equals-spacing` rule ([#394][] @ryym) +* Add auto fix for `wrap-multiline` +* Add auto fix for `jsx-boolean-value` +* Add auto fix for `no-unknown-property` +* Add auto fix for `jsx-curly-spacing` ([#407][] @ewendel) +* Add `requiredFirst` option to `jsx-sort-prop-types` ([#392][] @chrislaskey) +* Add `ignoreRefs` option to `jsx-no-bind` ([#330][] @silvenon) + +### Fixed +* Ignore `ref` in `jsx-handler-names` (again) ([#396][]) + +### Changed +* Update dependencies + +[3.16.0]: https://github.com/yannickcr/eslint-plugin-react/compare/v3.15.0...v3.16.0 +[#394]: https://github.com/yannickcr/eslint-plugin-react/issues/394 +[#407]: https://github.com/yannickcr/eslint-plugin-react/pull/407 +[#392]: https://github.com/yannickcr/eslint-plugin-react/pull/392 +[#330]: https://github.com/yannickcr/eslint-plugin-react/issues/330 +[#396]: https://github.com/yannickcr/eslint-plugin-react/issues/396 + ## [3.15.0] - 2016-01-12 ### Added * Add support for flow annotations to `prop-types` ([#382][] @phpnode) diff --git a/package.json b/package.json index 840c195a24..41e8a2b2c9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eslint-plugin-react", - "version": "3.15.0", + "version": "3.16.0", "author": "Yannick Croissant ", "description": "React specific linting rules for ESLint", "main": "index.js",