Skip to content

Commit bcbc9bf

Browse files
committed
v14.2.0
1 parent 5105f43 commit bcbc9bf

File tree

6 files changed

+45
-12
lines changed

6 files changed

+45
-12
lines changed

@commitlint/prompt-cli/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [14.2.0](https://github.com/conventional-changelog/commitlint/compare/v14.1.0...v14.2.0) (2021-11-06)
7+
8+
9+
### Features
10+
11+
* **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))
12+
13+
14+
15+
16+
617
# [14.1.0](https://github.com/conventional-changelog/commitlint/compare/v14.0.0...v14.1.0) (2021-11-01)
718

819
**Note:** Version bump only for package @commitlint/prompt-cli

@commitlint/prompt-cli/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@commitlint/prompt-cli",
3-
"version": "14.1.0",
3+
"version": "14.2.0",
44
"description": "commit prompt using commitlint.config.js",
55
"files": [
66
"cli.js"
@@ -36,9 +36,9 @@
3636
"@commitlint/utils": "^14.0.0"
3737
},
3838
"dependencies": {
39-
"@commitlint/prompt": "^14.1.0",
40-
"inquirer": "^6.5.2",
41-
"execa": "^5.0.0"
39+
"@commitlint/prompt": "^14.2.0",
40+
"execa": "^5.0.0",
41+
"inquirer": "^6.5.2"
4242
},
4343
"gitHead": "70f7f4688b51774e7ac5e40e896cdaa3f132b2bc"
4444
}

@commitlint/prompt/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [14.2.0](https://github.com/conventional-changelog/commitlint/compare/v14.1.0...v14.2.0) (2021-11-06)
7+
8+
9+
### Features
10+
11+
* **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))
12+
13+
14+
15+
16+
617
# [14.1.0](https://github.com/conventional-changelog/commitlint/compare/v14.0.0...v14.1.0) (2021-11-01)
718

819
**Note:** Version bump only for package @commitlint/prompt

@commitlint/prompt/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@commitlint/prompt",
3-
"version": "14.1.0",
3+
"version": "14.2.0",
44
"description": "commitizen prompt using commitlint.config.js",
55
"main": "./lib/index.js",
66
"files": [
@@ -37,20 +37,20 @@
3737
"node": ">=v12"
3838
},
3939
"devDependencies": {
40-
"@commitlint/utils": "^14.0.0",
41-
"@commitlint/types": "^13.2.0",
4240
"@commitlint/config-angular": "^13.2.0",
41+
"@commitlint/types": "^13.2.0",
42+
"@commitlint/utils": "^14.0.0",
4343
"@types/inquirer": "^6.5.0",
44-
"inquirer": "^6.5.2",
45-
"commitizen": "^4.2.4"
44+
"commitizen": "^4.2.4",
45+
"inquirer": "^6.5.2"
4646
},
4747
"dependencies": {
4848
"@commitlint/ensure": "^14.1.0",
4949
"@commitlint/load": "^14.1.0",
5050
"@commitlint/types": "^14.0.0",
5151
"chalk": "^4.0.0",
52-
"lodash": "^4.17.19",
53-
"inquirer": "^6.5.2"
52+
"inquirer": "^6.5.2",
53+
"lodash": "^4.17.19"
5454
},
5555
"gitHead": "70f7f4688b51774e7ac5e40e896cdaa3f132b2bc"
5656
}

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [14.2.0](https://github.com/conventional-changelog/commitlint/compare/v14.1.0...v14.2.0) (2021-11-06)
7+
8+
9+
### Features
10+
11+
* **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))
12+
13+
14+
15+
16+
617
# [14.1.0](https://github.com/conventional-changelog/commitlint/compare/v14.0.0...v14.1.0) (2021-11-01)
718

819

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"lerna": "4",
33
"npmClient": "yarn",
44
"useWorkspaces": true,
5-
"version": "14.1.0"
5+
"version": "14.2.0"
66
}

0 commit comments

Comments
 (0)