Skip to content

Commit fd56dff

Browse files
committed
v3.1.2
1 parent 248010b commit fd56dff

File tree

11 files changed

+187
-10
lines changed

11 files changed

+187
-10
lines changed

Diff for: @commitlint/cli/CHANGELOG.md

+37
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,43 @@
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.1.2"></a>
7+
## 3.1.2 (2017-08-07)
8+
9+
10+
11+
<a name="3.1.1"></a>
12+
## 3.1.1 (2017-08-07)
13+
14+
15+
16+
<a name="3.0.4"></a>
17+
## 3.0.4 (2017-08-04)
18+
19+
20+
### Bug Fixes
21+
22+
* **core:** correct type validation message ([09c2b26](https://github.com/marionebl/commitlint/commit/09c2b26))
23+
24+
25+
26+
<a name="3.0.3"></a>
27+
## 3.0.3 (2017-07-16)
28+
29+
30+
31+
<a name="3.0.2"></a>
32+
## 3.0.2 (2017-07-11)
33+
34+
35+
### Bug Fixes
36+
37+
* **cli:** remove destructuring for node 4 support ([fe8caff](https://github.com/marionebl/commitlint/commit/fe8caff))
38+
* ensure node4 compat ([bfeb653](https://github.com/marionebl/commitlint/commit/bfeb653))
39+
40+
41+
42+
643
<a name="3.0.4"></a>
744
## 3.0.4 (2017-08-04)
845

Diff for: @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.1",
3+
"version": "3.1.2",
44
"description": "Lint your commit messages",
55
"bin": {
66
"commitlint": "cli.js"
@@ -48,7 +48,7 @@
4848
"xo": "^0.18.2"
4949
},
5050
"dependencies": {
51-
"@commitlint/core": "^3.1.1",
51+
"@commitlint/core": "^3.1.2",
5252
"babel-polyfill": "^6.23.0",
5353
"chalk": "^2.0.1",
5454
"get-stdin": "^5.0.1",

Diff for: @commitlint/core/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.1.2"></a>
7+
## 3.1.2 (2017-08-07)
8+
9+
10+
### Bug Fixes
11+
12+
* **core:** harden to-lines typecheck ([248010b](https://github.com/marionebl/commitlint/commit/248010b))
13+
14+
15+
16+
<a name="3.1.1"></a>
17+
## 3.1.1 (2017-08-07)
18+
19+
20+
21+
<a name="3.0.4"></a>
22+
## 3.0.4 (2017-08-04)
23+
24+
25+
### Bug Fixes
26+
27+
* **core:** correct type validation message ([09c2b26](https://github.com/marionebl/commitlint/commit/09c2b26))
28+
29+
30+
### Features
31+
32+
* **core:** add Signed-off-by rule ([cefeb74](https://github.com/marionebl/commitlint/commit/cefeb74))
33+
34+
35+
36+
<a name="3.0.3"></a>
37+
## 3.0.3 (2017-07-16)
38+
39+
40+
41+
<a name="3.0.2"></a>
42+
## 3.0.2 (2017-07-11)
43+
44+
45+
### Bug Fixes
46+
47+
* enable recursive relative extends ([4decd4d](https://github.com/marionebl/commitlint/commit/4decd4d))
48+
* ensure node4 compat ([bfeb653](https://github.com/marionebl/commitlint/commit/bfeb653))
49+
* **core:** ignore version commits with leading whitespace ([9551bd6](https://github.com/marionebl/commitlint/commit/9551bd6))
50+
* **core:** resolve extends relative to config file ([0dd18bc](https://github.com/marionebl/commitlint/commit/0dd18bc))
51+
* use conventional-changelog-angular again ([633d835](https://github.com/marionebl/commitlint/commit/633d835))
52+
53+
54+
### Features
55+
56+
* **core:** do not prefix relative extends ([8fbbaed](https://github.com/marionebl/commitlint/commit/8fbbaed))
57+
* **core:** readd support for .conventional-changelog-lintrc ([02e4f43](https://github.com/marionebl/commitlint/commit/02e4f43))
58+
* **core:** support conventional-changelog-lint-config-* ([c80766b](https://github.com/marionebl/commitlint/commit/c80766b))
59+
60+
61+
62+
663
<a name="3.0.4"></a>
764
## 3.0.4 (2017-08-04)
865

Diff for: @commitlint/core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@commitlint/core",
3-
"version": "3.1.1",
3+
"version": "3.1.2",
44
"description": "Lint your commit messages",
55
"main": "lib/index.js",
66
"scripts": {

Diff for: @commitlint/example-prompt/CHANGELOG.md

+26
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,32 @@
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.1.2"></a>
7+
## 3.1.2 (2017-08-07)
8+
9+
10+
11+
<a name="3.1.1"></a>
12+
## 3.1.1 (2017-08-07)
13+
14+
15+
16+
<a name="3.0.4"></a>
17+
## 3.0.4 (2017-08-04)
18+
19+
20+
21+
<a name="3.0.3"></a>
22+
## 3.0.3 (2017-07-16)
23+
24+
25+
26+
<a name="3.0.2"></a>
27+
## 3.0.2 (2017-07-11)
28+
29+
30+
31+
632
<a name="3.0.4"></a>
733
## 3.0.4 (2017-08-04)
834

Diff for: @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.1",
4+
"version": "3.1.2",
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.1"
20+
"@commitlint/prompt-cli": "^3.1.2"
2121
}
2222
}

Diff for: @commitlint/prompt-cli/CHANGELOG.md

+31
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,37 @@
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.1.2"></a>
7+
## 3.1.2 (2017-08-07)
8+
9+
10+
11+
<a name="3.1.1"></a>
12+
## 3.1.1 (2017-08-07)
13+
14+
15+
16+
<a name="3.0.4"></a>
17+
## 3.0.4 (2017-08-04)
18+
19+
20+
21+
<a name="3.0.3"></a>
22+
## 3.0.3 (2017-07-16)
23+
24+
25+
26+
<a name="3.0.2"></a>
27+
## 3.0.2 (2017-07-11)
28+
29+
30+
### Features
31+
32+
* **prompt-cli:** add standalone prompt interface ([7911040](https://github.com/marionebl/commitlint/commit/7911040))
33+
34+
35+
36+
637
<a name="3.0.4"></a>
738
## 3.0.4 (2017-08-04)
839

Diff for: @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.1",
3+
"version": "3.1.2",
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.1",
32+
"@commitlint/prompt": "^3.1.2",
3333
"execa": "^0.7.0",
3434
"meow": "^3.7.0"
3535
}

Diff for: @commitlint/prompt/CHANGELOG.md

+26
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,32 @@
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.1.2"></a>
7+
## 3.1.2 (2017-08-07)
8+
9+
10+
11+
<a name="3.1.1"></a>
12+
## 3.1.1 (2017-08-07)
13+
14+
15+
16+
<a name="3.0.4"></a>
17+
## 3.0.4 (2017-08-04)
18+
19+
20+
21+
<a name="3.0.3"></a>
22+
## 3.0.3 (2017-07-16)
23+
24+
25+
26+
<a name="3.0.2"></a>
27+
## 3.0.2 (2017-07-11)
28+
29+
30+
31+
632
<a name="3.0.4"></a>
733
## 3.0.4 (2017-08-04)
834

Diff for: @commitlint/prompt/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@commitlint/prompt",
3-
"version": "3.1.1",
3+
"version": "3.1.2",
44
"description": "commitizen prompt using commitlint.config.js",
55
"main": "./lib/index.js",
66
"scripts": {
@@ -103,7 +103,7 @@
103103
"throat": "^4.1.0"
104104
},
105105
"dependencies": {
106-
"@commitlint/core": "^3.1.1",
106+
"@commitlint/core": "^3.1.2",
107107
"babel-polyfill": "^6.23.0",
108108
"babel-runtime": "^6.23.0",
109109
"chalk": "^1.1.1",

Diff for: lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
"packages": [
44
"@commitlint/*"
55
],
6-
"version": "3.1.1"
6+
"version": "3.1.2"
77
}

0 commit comments

Comments
 (0)