Skip to content

Commit 8f668c7

Browse files
committed
changelog/package bumps
1 parent cd9d249 commit 8f668c7

File tree

4 files changed

+17
-5
lines changed

4 files changed

+17
-5
lines changed

Diff for: CHANGELOG.md

+9-3
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,15 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44
This change log adheres to standards from [Keep a CHANGELOG](http://keepachangelog.com).
55

66
## [Unreleased]
7+
8+
9+
## [2.12.0] - 2018-05-17
710
### Added
811
- Ignore type imports for [`named`] rule ([#931], thanks [@mattijsbliek])
912
- Add documentation for [`no-useless-path-segments`] rule ([#1068], thanks [@manovotny])
13+
- `packageDir` option for [`no-extraneous-dependencies`] can be array-valued ([#1085], thanks [@hulkish])
1014

11-
12-
# [2.11.0] - 2018-04-09
15+
## [2.11.0] - 2018-04-09
1316
### Added
1417
- Fixer for [`first`] ([#1046], thanks [@fengkfengk])
1518
- `allow-require` option for [`no-commonjs`] rule ([#880], thanks [@futpib])
@@ -463,6 +466,7 @@ for info on changes for earlier releases.
463466

464467
[`memo-parser`]: ./memo-parser/README.md
465468

469+
[#1085]: https://github.com/benmosher/eslint-plugin-import/pull/1085
466470
[#1068]: https://github.com/benmosher/eslint-plugin-import/pull/1068
467471
[#1046]: https://github.com/benmosher/eslint-plugin-import/pull/1046
468472
[#944]: https://github.com/benmosher/eslint-plugin-import/pull/944
@@ -606,7 +610,8 @@ for info on changes for earlier releases.
606610
[#119]: https://github.com/benmosher/eslint-plugin-import/issues/119
607611
[#89]: https://github.com/benmosher/eslint-plugin-import/issues/89
608612

609-
[Unreleased]: https://github.com/benmosher/eslint-plugin-import/compare/v2.11.0...HEAD
613+
[Unreleased]: https://github.com/benmosher/eslint-plugin-import/compare/v2.12.0...HEAD
614+
[2.12.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.11.0...v2.12.0
610615
[2.11.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.10.0...v2.11.0
611616
[2.10.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.9.0...v2.10.0
612617
[2.9.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.8.0...v2.9.0
@@ -716,3 +721,4 @@ for info on changes for earlier releases.
716721
[@lukeapage]: https://github.com/lukeapage
717722
[@manovotny]: https://github.com/manovotny
718723
[@mattijsbliek]: https://github.com/mattijsbliek
724+
[@hulkish]: https://github.com/hulkish

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-import",
3-
"version": "2.11.0",
3+
"version": "2.12.0",
44
"description": "Import with sanity.",
55
"engines": {
66
"node": ">=4"

Diff for: resolvers/webpack/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ This change log adheres to standards from [Keep a CHANGELOG](http://keepachangel
66
## Unreleased
77

88

9+
## 0.10.0 - 2018-05-17
10+
### Changed
11+
- cache webpack resolve function, for performance ([#788]/[#1091])
12+
913
## 0.9.0 - 2018-03-29
1014
### Breaking
1115
- Fix with `pnpm` by bumping `resolve` ([#968])
@@ -97,6 +101,7 @@ This change log adheres to standards from [Keep a CHANGELOG](http://keepachangel
97101
- `interpret` configs (such as `.babel.js`).
98102
Thanks to [@gausie] for the initial PR ([#164], ages ago! 😅) and [@jquense] for tests ([#278]).
99103

104+
[#1091]: https://github.com/benmosher/eslint-plugin-import/pull/1091
100105
[#969]: https://github.com/benmosher/eslint-plugin-import/pull/969
101106
[#968]: https://github.com/benmosher/eslint-plugin-import/pull/968
102107
[#683]: https://github.com/benmosher/eslint-plugin-import/pull/683
@@ -112,6 +117,7 @@ This change log adheres to standards from [Keep a CHANGELOG](http://keepachangel
112117
[#181]: https://github.com/benmosher/eslint-plugin-import/pull/181
113118
[#164]: https://github.com/benmosher/eslint-plugin-import/pull/164
114119

120+
[#788]: https://github.com/benmosher/eslint-plugin-import/issues/788
115121
[#681]: https://github.com/benmosher/eslint-plugin-import/issues/681
116122
[#435]: https://github.com/benmosher/eslint-plugin-import/issues/435
117123
[#411]: https://github.com/benmosher/eslint-plugin-import/issues/411

Diff for: resolvers/webpack/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-import-resolver-webpack",
3-
"version": "0.9.0",
3+
"version": "0.10.0",
44
"description": "Resolve paths to dependencies, given a webpack.config.js. Plugin for eslint-plugin-import.",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)