diff --git a/CHANGELOG.md b/CHANGELOG.md index ccd02709..e0f54810 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +# [4.6.0](https://github.com/streamich/git-cz/compare/v4.5.0...v4.6.0) (2020-05-25) + + +### Bug Fixes + +* 🐛 test when in --dry-run mode ([1697c56](https://github.com/streamich/git-cz/commit/1697c561e8edc613d6087ab2ec84ab7617c0c1e5)) + + +### Features + +* 🎸 check for staged files ([c283ad3](https://github.com/streamich/git-cz/commit/c283ad3fac13eaf00a899b49da474c7608a61708)) + # [4.5.0](https://github.com/streamich/git-cz/compare/v4.4.1...v4.5.0) (2020-05-16) diff --git a/lib/cli.js b/lib/cli.js index 06193bef..115c4fa5 100644 --- a/lib/cli.js +++ b/lib/cli.js @@ -1,4 +1,4 @@ -const {spawn, execSync} = require('child_process'); +const {spawn} = require('child_process'); const fs = require('fs'); const {join} = require('path'); const shellescape = require('any-shell-escape');