From 7b4014415bfb213576da8b7ac93aff0ceb20474a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20Str=C3=BCbing?= Date: Sat, 16 Mar 2019 10:16:12 +0100 Subject: [PATCH] chore(core): update core to 1.1.2 --- CHANGELOG.md | 5 +++++ package.json | 2 +- src/index.ts | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e26538..715a906 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,11 @@ ### Fixed ### Security + +# [2.0.6] - 2019-03-16 +## Fixed +- use `CGO_ENABLED=0` to let Go binary run on alpine + # [2.0.5] - 2019-03-01 ## Fixed - Use `.exe` binary for windows again diff --git a/package.json b/package.json index 443bc29..a9cbea2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "editorconfig-checker", - "version": "2.0.5", + "version": "2.0.6", "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 6f0e9a8..ddaa924 100644 --- a/src/index.ts +++ b/src/index.ts @@ -13,7 +13,7 @@ import { removeFile } from "./utils"; -const CORE_VERSION = "1.1.1"; +const CORE_VERSION = "1.1.2"; const execute = () => { const ecProcess = spawn(`${binary()}`, process.argv.slice(2));