From 3e291690e41883cb67d13b5bbde1b32850494943 Mon Sep 17 00:00:00 2001 From: Ben Mosher Date: Fri, 2 Jun 2017 09:54:34 -0400 Subject: [PATCH 1/3] bump v2.4.0 --- CHANGELOG.md | 8 +++++++- package.json | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 461303cdd..90fc0fe98 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ This project adheres to [Semantic Versioning](http://semver.org/). This change log adheres to standards from [Keep a CHANGELOG](http://keepachangelog.com). ## [Unreleased] + + +## [2.4.0] - 2017-06-02 ### Added - Add `filePath` into `parserOptions` passed to `parser` ([#839], thanks [@sompylasar]) - Add `allow` option to [`no-unassigned-import`] to allow for files that match the globs ([#671], [#737], thanks [@kevin940726]). @@ -448,6 +451,7 @@ for info on changes for earlier releases. [#157]: https://github.com/benmosher/eslint-plugin-import/pull/157 [#314]: https://github.com/benmosher/eslint-plugin-import/pull/314 +[#839]: https://github.com/benmosher/eslint-plugin-import/issues/839 [#671]: https://github.com/benmosher/eslint-plugin-import/issues/671 [#660]: https://github.com/benmosher/eslint-plugin-import/issues/660 [#653]: https://github.com/benmosher/eslint-plugin-import/issues/653 @@ -506,7 +510,8 @@ for info on changes for earlier releases. [#119]: https://github.com/benmosher/eslint-plugin-import/issues/119 [#89]: https://github.com/benmosher/eslint-plugin-import/issues/89 -[Unreleased]: https://github.com/benmosher/eslint-plugin-import/compare/v2.3.0...HEAD +[Unreleased]: https://github.com/benmosher/eslint-plugin-import/compare/v2.4.0...HEAD +[2.4.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.3.0...v2.4.0 [2.3.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.2.0...v2.3.0 [2.2.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.1.0...v2.2.0 [2.1.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.0.1...v2.1.0 @@ -586,4 +591,5 @@ for info on changes for earlier releases. [@giodamelio]: https://github.com/giodamelio [@ntdb]: https://github.com/ntdb [@ramasilveyra]: https://github.com/ramasilveyra +[@sompylasar]: https://github.com/sompylasar [@kevin940726]: https://github.com/kevin940726 diff --git a/package.json b/package.json index 60b53c3cd..c60e9b2ad 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eslint-plugin-import", - "version": "2.3.0", + "version": "2.4.0", "description": "Import with sanity.", "engines": { "node": ">=4" From a3728d705ed1547f91e487dd6f7326bf67c52e9e Mon Sep 17 00:00:00 2001 From: Ben Mosher Date: Fri, 2 Jun 2017 09:57:28 -0400 Subject: [PATCH 2/3] bump eslint-module-utils to v2.1.0 --- package.json | 2 +- utils/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index c60e9b2ad..2a74867fe 100644 --- a/package.json +++ b/package.json @@ -82,7 +82,7 @@ "debug": "^2.2.0", "doctrine": "1.5.0", "eslint-import-resolver-node": "^0.2.0", - "eslint-module-utils": "^2.0.0", + "eslint-module-utils": "^2.1.0", "has": "^1.0.1", "lodash.cond": "^4.3.0", "minimatch": "^3.0.3", diff --git a/utils/package.json b/utils/package.json index 0f76e24d9..bc234b534 100644 --- a/utils/package.json +++ b/utils/package.json @@ -1,6 +1,6 @@ { "name": "eslint-module-utils", - "version": "2.0.0", + "version": "2.1.0", "description": "Core utilities to support eslint-plugin-import and other module-related plugins.", "engines": { "node": ">=4" From 44ca1588d3817f8142aba0bfd345871f8d563ded Mon Sep 17 00:00:00 2001 From: Ben Mosher Date: Fri, 2 Jun 2017 10:03:05 -0400 Subject: [PATCH 3/3] update utils changelog --- utils/CHANGELOG.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/utils/CHANGELOG.md b/utils/CHANGELOG.md index 241398a41..02ed3e462 100644 --- a/utils/CHANGELOG.md +++ b/utils/CHANGELOG.md @@ -3,7 +3,10 @@ All notable changes to this module 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). -## [Unreleased] +## Unreleased + + +## v2.1.0 - 2017-06-02 ### Added - `parse` now additionally passes `filePath` to `parser` in `parserOptions` like `eslint` core does