diff --git a/CHANGELOG.md b/CHANGELOG.md index e651db9..0aa8b95 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,12 @@ ### Misc +## [4.0.2] - 2021-03-31 + +- Update Core to 2.3.5 + +### Misc + - Switch to Github Actions [#228](https://github.com/editorconfig-checker/editorconfig-checker.javascript/pull/228) ([@mstruebing](https://github.com/mstruebing)) ## [4.0.1] - 2021-03-16 diff --git a/package-lock.json b/package-lock.json index ee7ced7..ab1fe49 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "editorconfig-checker", - "version": "4.0.0", + "version": "4.0.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index b0f3685..9c39af1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "editorconfig-checker", - "version": "4.0.1", + "version": "4.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 cbf7bcf..af6edc6 100644 --- a/src/index.ts +++ b/src/index.ts @@ -13,7 +13,7 @@ import { removeFile, } from "./utils"; -const CORE_VERSION = "2.3.4"; +const CORE_VERSION = "2.3.5"; const execute = () => { const ecProcess = spawn(`${binary()}`, process.argv.slice(2));