diff --git a/CHANGELOG.md b/CHANGELOG.md index 9bbd96a..eb3abc3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [5.7.0](https://github.com/streetsidesoftware/cspell-cli/compare/v5.6.12...v5.7.0) (2022-01-21) + ### [5.6.12](https://github.com/streetsidesoftware/cspell-cli/compare/v5.6.11...v5.6.12) (2021-12-29) ### [5.6.11](https://github.com/streetsidesoftware/cspell-cli/compare/v5.6.10...v5.6.11) (2021-12-02) diff --git a/package-lock.json b/package-lock.json index c5d63fc..16cac01 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "cspell-cli", - "version": "5.6.12", + "version": "5.7.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "cspell-cli", - "version": "5.6.12", + "version": "5.7.0", "license": "MIT", "dependencies": { "cspell": "^5.16.0" diff --git a/package.json b/package.json index 0b40419..547cc6c 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,15 @@ { "name": "cspell-cli", - "version": "5.6.12", + "version": "5.7.0", "description": "CLI for cspell: A Spelling Checker for Code!", "main": "index.js", "bin": { "cspell-cli": "index.js" }, "scripts": { - "version-prerelease": "npm run version-release -- -p", + "version-prerelease": "npx version-release -p", + "version-release-minor": "npx standard-version -r minor", + "version-release-patch": "npx standard-version -r patch", "version-release": "npx standard-version", "test": "node ./index.js \"**\"" },