diff --git a/CHANGELOG.md b/CHANGELOG.md index 584c541e..712e01a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## v8.4.0 + +* Normalize all config paths ([#1014][]) +* Check for remote files ([#1017][]) +* Allow multiple rule directories ([#1016][]) + +[#1014]: https://github.com/AtomLinter/linter-eslint/pull/1014 +[#1016]: https://github.com/AtomLinter/linter-eslint/pull/1016 +[#1017]: https://github.com/AtomLinter/linter-eslint/pull/1017 + ## v8.3.2 * Verify that a rule has a meta property before accessing ([#1026][]) diff --git a/package-lock.json b/package-lock.json index 9bf1d68d..598dc1ca 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "linter-eslint", - "version": "8.3.2", + "version": "8.4.0", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -1848,14 +1848,6 @@ "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" }, - "string_decoder": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", - "integrity": "sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ==", - "requires": { - "safe-buffer": "5.1.1" - } - }, "string-width": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", @@ -1880,6 +1872,14 @@ } } }, + "string_decoder": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", + "integrity": "sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ==", + "requires": { + "safe-buffer": "5.1.1" + } + }, "strip-ansi": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", diff --git a/package.json b/package.json index 8092be9f..dda5b39b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "linter-eslint", "main": "./src/main.js", - "version": "8.3.2", + "version": "8.4.0", "description": "Lint JavaScript on the fly, using ESLint", "repository": "https://github.com/AtomLinter/linter-eslint.git", "license": "MIT",