diff --git a/@commitlint/prompt-cli/CHANGELOG.md b/@commitlint/prompt-cli/CHANGELOG.md index b5c188b1ba..276ca7b491 100644 --- a/@commitlint/prompt-cli/CHANGELOG.md +++ b/@commitlint/prompt-cli/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [14.2.0](https://github.com/conventional-changelog/commitlint/compare/v14.1.0...v14.2.0) (2021-11-06) + + +### Features + +* **prompt:** rewrite codebase to use inquirer - UPDATED with current master ([#2697](https://github.com/conventional-changelog/commitlint/issues/2697)) ([5105f43](https://github.com/conventional-changelog/commitlint/commit/5105f43ea8093bce82fe4703c4c14a8210721924)) + + + + + # [14.1.0](https://github.com/conventional-changelog/commitlint/compare/v14.0.0...v14.1.0) (2021-11-01) **Note:** Version bump only for package @commitlint/prompt-cli diff --git a/@commitlint/prompt-cli/package.json b/@commitlint/prompt-cli/package.json index 329eb125f8..e351dd05ee 100644 --- a/@commitlint/prompt-cli/package.json +++ b/@commitlint/prompt-cli/package.json @@ -1,6 +1,6 @@ { "name": "@commitlint/prompt-cli", - "version": "14.1.0", + "version": "14.2.0", "description": "commit prompt using commitlint.config.js", "files": [ "cli.js" @@ -36,9 +36,9 @@ "@commitlint/utils": "^14.0.0" }, "dependencies": { - "@commitlint/prompt": "^14.1.0", - "inquirer": "^6.5.2", - "execa": "^5.0.0" + "@commitlint/prompt": "^14.2.0", + "execa": "^5.0.0", + "inquirer": "^6.5.2" }, "gitHead": "70f7f4688b51774e7ac5e40e896cdaa3f132b2bc" } diff --git a/@commitlint/prompt/CHANGELOG.md b/@commitlint/prompt/CHANGELOG.md index 310c786645..20cca344ca 100644 --- a/@commitlint/prompt/CHANGELOG.md +++ b/@commitlint/prompt/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [14.2.0](https://github.com/conventional-changelog/commitlint/compare/v14.1.0...v14.2.0) (2021-11-06) + + +### Features + +* **prompt:** rewrite codebase to use inquirer - UPDATED with current master ([#2697](https://github.com/conventional-changelog/commitlint/issues/2697)) ([5105f43](https://github.com/conventional-changelog/commitlint/commit/5105f43ea8093bce82fe4703c4c14a8210721924)) + + + + + # [14.1.0](https://github.com/conventional-changelog/commitlint/compare/v14.0.0...v14.1.0) (2021-11-01) **Note:** Version bump only for package @commitlint/prompt diff --git a/@commitlint/prompt/package.json b/@commitlint/prompt/package.json index c421069da7..168f937ae5 100644 --- a/@commitlint/prompt/package.json +++ b/@commitlint/prompt/package.json @@ -1,6 +1,6 @@ { "name": "@commitlint/prompt", - "version": "14.1.0", + "version": "14.2.0", "description": "commitizen prompt using commitlint.config.js", "main": "./lib/index.js", "files": [ @@ -37,20 +37,20 @@ "node": ">=v12" }, "devDependencies": { - "@commitlint/utils": "^14.0.0", - "@commitlint/types": "^13.2.0", "@commitlint/config-angular": "^13.2.0", + "@commitlint/types": "^13.2.0", + "@commitlint/utils": "^14.0.0", "@types/inquirer": "^6.5.0", - "inquirer": "^6.5.2", - "commitizen": "^4.2.4" + "commitizen": "^4.2.4", + "inquirer": "^6.5.2" }, "dependencies": { "@commitlint/ensure": "^14.1.0", "@commitlint/load": "^14.1.0", "@commitlint/types": "^14.0.0", "chalk": "^4.0.0", - "lodash": "^4.17.19", - "inquirer": "^6.5.2" + "inquirer": "^6.5.2", + "lodash": "^4.17.19" }, "gitHead": "70f7f4688b51774e7ac5e40e896cdaa3f132b2bc" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 90e78ce828..9e1a800eb2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [14.2.0](https://github.com/conventional-changelog/commitlint/compare/v14.1.0...v14.2.0) (2021-11-06) + + +### Features + +* **prompt:** rewrite codebase to use inquirer - UPDATED with current master ([#2697](https://github.com/conventional-changelog/commitlint/issues/2697)) ([5105f43](https://github.com/conventional-changelog/commitlint/commit/5105f43ea8093bce82fe4703c4c14a8210721924)) + + + + + # [14.1.0](https://github.com/conventional-changelog/commitlint/compare/v14.0.0...v14.1.0) (2021-11-01) diff --git a/lerna.json b/lerna.json index 55882f0a4a..d0bf3d5fcd 100644 --- a/lerna.json +++ b/lerna.json @@ -2,5 +2,5 @@ "lerna": "4", "npmClient": "yarn", "useWorkspaces": true, - "version": "14.1.0" + "version": "14.2.0" }