Skip to content

Commit e6ef072

Browse files
committed
v3.2.0
1 parent b21bf71 commit e6ef072

File tree

19 files changed

+295
-18
lines changed

19 files changed

+295
-18
lines changed

@commitlint/cli/CHANGELOG.md

+57
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,63 @@
33
All notable changes to this project will be documented in this file.
44
See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
55

6+
<a name="3.2.0"></a>
7+
# 3.2.0 (2017-09-05)
8+
9+
10+
### Features
11+
12+
* add preset parser ([5cd2335](https://github.com/marionebl/commitlint/commit/5cd2335))
13+
14+
15+
16+
<a name="3.1.3"></a>
17+
## 3.1.3 (2017-08-21)
18+
19+
20+
### Bug Fixes
21+
22+
* **core:** determine git root correctly in sub directories ([#64](https://github.com/marionebl/commitlint/issues/64)) ([d594ec4](https://github.com/marionebl/commitlint/commit/d594ec4)), closes [#62](https://github.com/marionebl/commitlint/issues/62)
23+
24+
25+
26+
<a name="3.1.2"></a>
27+
## 3.1.2 (2017-08-07)
28+
29+
30+
31+
<a name="3.1.1"></a>
32+
## 3.1.1 (2017-08-07)
33+
34+
35+
36+
<a name="3.0.4"></a>
37+
## 3.0.4 (2017-08-04)
38+
39+
40+
### Bug Fixes
41+
42+
* **core:** correct type validation message ([09c2b26](https://github.com/marionebl/commitlint/commit/09c2b26))
43+
44+
45+
46+
<a name="3.0.3"></a>
47+
## 3.0.3 (2017-07-16)
48+
49+
50+
51+
<a name="3.0.2"></a>
52+
## 3.0.2 (2017-07-11)
53+
54+
55+
### Bug Fixes
56+
57+
* **cli:** remove destructuring for node 4 support ([fe8caff](https://github.com/marionebl/commitlint/commit/fe8caff))
58+
* ensure node4 compat ([bfeb653](https://github.com/marionebl/commitlint/commit/bfeb653))
59+
60+
61+
62+
663
<a name="3.1.3"></a>
764
## 3.1.3 (2017-08-21)
865

@commitlint/cli/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@commitlint/cli",
3-
"version": "3.1.3",
3+
"version": "3.2.0",
44
"description": "Lint your commit messages",
55
"bin": {
66
"commitlint": "cli.js"
@@ -53,7 +53,7 @@
5353
"xo": "^0.18.2"
5454
},
5555
"dependencies": {
56-
"@commitlint/core": "^3.1.3",
56+
"@commitlint/core": "^3.2.0",
5757
"babel-polyfill": "^6.23.0",
5858
"chalk": "^2.0.1",
5959
"get-stdin": "^5.0.1",

@commitlint/core/CHANGELOG.md

+78
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,84 @@
33
All notable changes to this project will be documented in this file.
44
See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
55

6+
<a name="3.2.0"></a>
7+
# 3.2.0 (2017-09-05)
8+
9+
10+
### Features
11+
12+
* add preset parser ([5cd2335](https://github.com/marionebl/commitlint/commit/5cd2335))
13+
14+
15+
16+
<a name="3.1.3"></a>
17+
## 3.1.3 (2017-08-21)
18+
19+
20+
### Bug Fixes
21+
22+
* **core:** correct typo in report ([3eb08e8](https://github.com/marionebl/commitlint/commit/3eb08e8))
23+
* **core:** determine git root correctly in sub directories ([#64](https://github.com/marionebl/commitlint/issues/64)) ([d594ec4](https://github.com/marionebl/commitlint/commit/d594ec4)), closes [#62](https://github.com/marionebl/commitlint/issues/62)
24+
25+
26+
27+
<a name="3.1.2"></a>
28+
## 3.1.2 (2017-08-07)
29+
30+
31+
### Bug Fixes
32+
33+
* **core:** harden to-lines typecheck ([248010b](https://github.com/marionebl/commitlint/commit/248010b))
34+
35+
36+
37+
<a name="3.1.1"></a>
38+
## 3.1.1 (2017-08-07)
39+
40+
41+
42+
<a name="3.0.4"></a>
43+
## 3.0.4 (2017-08-04)
44+
45+
46+
### Bug Fixes
47+
48+
* **core:** correct type validation message ([09c2b26](https://github.com/marionebl/commitlint/commit/09c2b26))
49+
50+
51+
### Features
52+
53+
* **core:** add Signed-off-by rule ([cefeb74](https://github.com/marionebl/commitlint/commit/cefeb74))
54+
55+
56+
57+
<a name="3.0.3"></a>
58+
## 3.0.3 (2017-07-16)
59+
60+
61+
62+
<a name="3.0.2"></a>
63+
## 3.0.2 (2017-07-11)
64+
65+
66+
### Bug Fixes
67+
68+
* enable recursive relative extends ([4decd4d](https://github.com/marionebl/commitlint/commit/4decd4d))
69+
* ensure node4 compat ([bfeb653](https://github.com/marionebl/commitlint/commit/bfeb653))
70+
* **core:** ignore version commits with leading whitespace ([9551bd6](https://github.com/marionebl/commitlint/commit/9551bd6))
71+
* **core:** resolve extends relative to config file ([0dd18bc](https://github.com/marionebl/commitlint/commit/0dd18bc))
72+
* use conventional-changelog-angular again ([633d835](https://github.com/marionebl/commitlint/commit/633d835))
73+
74+
75+
### Features
76+
77+
* **core:** do not prefix relative extends ([8fbbaed](https://github.com/marionebl/commitlint/commit/8fbbaed))
78+
* **core:** readd support for .conventional-changelog-lintrc ([02e4f43](https://github.com/marionebl/commitlint/commit/02e4f43))
79+
* **core:** support conventional-changelog-lint-config-* ([c80766b](https://github.com/marionebl/commitlint/commit/c80766b))
80+
81+
82+
83+
684
<a name="3.1.3"></a>
785
## 3.1.3 (2017-08-21)
886

@commitlint/core/package.json

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@commitlint/core",
3-
"version": "3.1.3",
3+
"version": "3.2.0",
44
"description": "Lint your commit messages",
55
"main": "lib/index.js",
66
"scripts": {
@@ -26,7 +26,9 @@
2626
]
2727
},
2828
"babel": {
29-
"presets": ["babel-preset-commitlint"]
29+
"presets": [
30+
"babel-preset-commitlint"
31+
]
3032
},
3133
"xo": false,
3234
"nyc": {
@@ -64,7 +66,7 @@
6466
"ansi-styles": "3.1.0",
6567
"ava": "0.18.2",
6668
"babel-cli": "^6.18.0",
67-
"babel-preset-commitlint": "^3.1.3",
69+
"babel-preset-commitlint": "^3.2.0",
6870
"babel-register": "6.24.1",
6971
"cross-env": "^5.0.1",
7072
"denodeify": "1.2.1",

@commitlint/example-prompt/CHANGELOG.md

+36
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,42 @@
33
All notable changes to this project will be documented in this file.
44
See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
55

6+
<a name="3.2.0"></a>
7+
# 3.2.0 (2017-09-05)
8+
9+
10+
11+
<a name="3.1.3"></a>
12+
## 3.1.3 (2017-08-21)
13+
14+
15+
16+
<a name="3.1.2"></a>
17+
## 3.1.2 (2017-08-07)
18+
19+
20+
21+
<a name="3.1.1"></a>
22+
## 3.1.1 (2017-08-07)
23+
24+
25+
26+
<a name="3.0.4"></a>
27+
## 3.0.4 (2017-08-04)
28+
29+
30+
31+
<a name="3.0.3"></a>
32+
## 3.0.3 (2017-07-16)
33+
34+
35+
36+
<a name="3.0.2"></a>
37+
## 3.0.2 (2017-07-11)
38+
39+
40+
41+
642
<a name="3.1.3"></a>
743
## 3.1.3 (2017-08-21)
844

@commitlint/example-prompt/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@commitlint/example-prompt",
33
"private": true,
4-
"version": "3.1.3",
4+
"version": "3.2.0",
55
"description": "Example for prompt guide",
66
"scripts": {
77
"commit": "commit"
@@ -17,6 +17,6 @@
1717
},
1818
"homepage": "https://github.com/marionebl/commitlint#readme",
1919
"devDependencies": {
20-
"@commitlint/prompt-cli": "^3.1.3"
20+
"@commitlint/prompt-cli": "^3.2.0"
2121
}
2222
}

@commitlint/prompt-cli/CHANGELOG.md

+41
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,47 @@
33
All notable changes to this project will be documented in this file.
44
See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
55

6+
<a name="3.2.0"></a>
7+
# 3.2.0 (2017-09-05)
8+
9+
10+
11+
<a name="3.1.3"></a>
12+
## 3.1.3 (2017-08-21)
13+
14+
15+
16+
<a name="3.1.2"></a>
17+
## 3.1.2 (2017-08-07)
18+
19+
20+
21+
<a name="3.1.1"></a>
22+
## 3.1.1 (2017-08-07)
23+
24+
25+
26+
<a name="3.0.4"></a>
27+
## 3.0.4 (2017-08-04)
28+
29+
30+
31+
<a name="3.0.3"></a>
32+
## 3.0.3 (2017-07-16)
33+
34+
35+
36+
<a name="3.0.2"></a>
37+
## 3.0.2 (2017-07-11)
38+
39+
40+
### Features
41+
42+
* **prompt-cli:** add standalone prompt interface ([7911040](https://github.com/marionebl/commitlint/commit/7911040))
43+
44+
45+
46+
647
<a name="3.1.3"></a>
748
## 3.1.3 (2017-08-21)
849

@commitlint/prompt-cli/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@commitlint/prompt-cli",
3-
"version": "3.1.3",
3+
"version": "3.2.0",
44
"description": "commit prompt using commitlint.config.js",
55
"bin": {
66
"commit": "./cli.js"
@@ -29,7 +29,7 @@
2929
"@commitlint/utils": "^3.1.1"
3030
},
3131
"dependencies": {
32-
"@commitlint/prompt": "^3.1.3",
32+
"@commitlint/prompt": "^3.2.0",
3333
"execa": "^0.7.0",
3434
"meow": "^3.7.0"
3535
}

@commitlint/prompt/CHANGELOG.md

+36
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,42 @@
33
All notable changes to this project will be documented in this file.
44
See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
55

6+
<a name="3.2.0"></a>
7+
# 3.2.0 (2017-09-05)
8+
9+
10+
11+
<a name="3.1.3"></a>
12+
## 3.1.3 (2017-08-21)
13+
14+
15+
16+
<a name="3.1.2"></a>
17+
## 3.1.2 (2017-08-07)
18+
19+
20+
21+
<a name="3.1.1"></a>
22+
## 3.1.1 (2017-08-07)
23+
24+
25+
26+
<a name="3.0.4"></a>
27+
## 3.0.4 (2017-08-04)
28+
29+
30+
31+
<a name="3.0.3"></a>
32+
## 3.0.3 (2017-07-16)
33+
34+
35+
36+
<a name="3.0.2"></a>
37+
## 3.0.2 (2017-07-11)
38+
39+
40+
41+
642
<a name="3.1.3"></a>
743
## 3.1.3 (2017-08-21)
844

@commitlint/prompt/package.json

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@commitlint/prompt",
3-
"version": "3.1.3",
3+
"version": "3.2.0",
44
"description": "commitizen prompt using commitlint.config.js",
55
"main": "./lib/index.js",
66
"scripts": {
@@ -25,7 +25,9 @@
2525
]
2626
},
2727
"babel": {
28-
"presets": ["commitlint"]
28+
"presets": [
29+
"commitlint"
30+
]
2931
},
3032
"config": {
3133
"commitizen": {
@@ -54,14 +56,14 @@
5456
"@commitlint/utils": "^3.1.1",
5557
"ava": "^0.20.0",
5658
"babel-cli": "^6.24.1",
57-
"babel-preset-commitlint": "3.1.3",
59+
"babel-preset-commitlint": "^3.2.0",
5860
"babel-register": "^6.24.1",
5961
"commitizen": "^2.9.6",
6062
"cross-env": "^5.0.1",
6163
"throat": "^4.1.0"
6264
},
6365
"dependencies": {
64-
"@commitlint/core": "^3.1.3",
66+
"@commitlint/core": "^3.2.0",
6567
"babel-runtime": "^6.23.0",
6668
"chalk": "^1.1.1",
6769
"lodash": "^4.17.4",

0 commit comments

Comments
 (0)