Skip to content

Commit

Permalink
chore(release): 2.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
mstruebing committed Apr 20, 2019
1 parent ccafbf9 commit 732feb2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ clean-dist:
rm -Rf ./dist


release: _is_master_branch _git_branch_is_up_to_date _current_version _do_release
release: _is_master_branch _git_branch_is_up_to_date _do_release
echo Release done. Go to Github and create a release.

_is_master_branch:
Expand All @@ -134,7 +134,7 @@ _current_version:

_do_release: clean install test build run _tag_version publish

_tag_version:
_tag_version: _current_version
@read -p "Enter core version to release: " core_version && \
read -p "Enter self version to release: " self_version && \
sed -i "s/const CORE_VERSION = \".*\";/const CORE_VERSION = \"$${core_version}\";/" ./src/index.ts && \
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "editorconfig-checker",
"version": "2.0.6",
"version": "2.0.7",
"description": "A tool to verify that your files are in harmony with your .editorconfig",
"main": "src/index.js",
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
removeFile
} from "./utils";

const CORE_VERSION = "1.1.2";
const CORE_VERSION = "1.1.3";

const execute = () => {
const ecProcess = spawn(`${binary()}`, process.argv.slice(2));
Expand Down

0 comments on commit 732feb2

Please sign in to comment.