diff --git a/CHANGELOG.md b/CHANGELOG.md index 55fb393..102484f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +# Changelog + +## Unreleased +### Added +### Changed +### Deprecated +### Removed +### Fixed +### Security + +# [2.0.2] - 2019-03-01 +## Fixed +- Updated core for windows compatibility see: https://github.com/editorconfig-checker/editorconfig-checker/releases/tag/1.1.1 + # [2.0.1] - 2019-02-27 ## BREAKING - use [editorconfig-checker](https://github.com/editorconfig-checker/editorconfig-checker) as core and only have a typescript wrapper. diff --git a/package.json b/package.json index 0a8ec6a..fd01bb1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "editorconfig-checker", - "version": "2.0.1", + "version": "2.0.2", "description": "A tool to verify that your files are in harmony with your .editorconfig", "main": "src/index.js", "bin": { diff --git a/src/index.ts b/src/index.ts index 411ebe6..0b2d0de 100644 --- a/src/index.ts +++ b/src/index.ts @@ -16,7 +16,7 @@ import { removeFile } from "./utils"; -const CORE_VERSION = "1.1.0"; +const CORE_VERSION = "1.1.1"; const execute = () => { const ecProcess = spawn(`${binary()}`, process.argv.slice(2));