diff --git a/CHANGELOG.md b/CHANGELOG.md index 08bc5c1..696c98d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) ### Removed +## v0.0.5 - 2021-05-03 + +### Added + +- Add support for locally installed eslint configs and plugins. + Adding `install_dir` config option to specify where eslint's plugins and configs are installed. + On Ubuntu, locally installed eslint configs and plugins are required for eslint versions >= 6.0.0: + +- Add support for parsing eslint error lines. + ## v0.0.4 - 2021-01-19 ### Changed diff --git a/setup.py b/setup.py index ab2ef66..8dcc25b 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ author="NIWC Pacific", name="statick-web", description="Statick analysis plugins for Web (css, html, js) files.", - version="0.0.4", + version="0.0.5", packages=[ "statick_tool", "statick_tool.plugins.discovery",