Skip to content

Commit a077d8d

Browse files
author
commitlint
committed
v3.1.3
1 parent d594ec4 commit a077d8d

File tree

11 files changed

+223
-10
lines changed

11 files changed

+223
-10
lines changed

@commitlint/cli/CHANGELOG.md

+47
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,53 @@
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.3"></a>
7+
## 3.1.3 (2017-08-21)
8+
9+
10+
### Bug Fixes
11+
12+
* **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)
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+
### Bug Fixes
31+
32+
* **core:** correct type validation message ([09c2b26](https://github.com/marionebl/commitlint/commit/09c2b26))
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+
* **cli:** remove destructuring for node 4 support ([fe8caff](https://github.com/marionebl/commitlint/commit/fe8caff))
48+
* ensure node4 compat ([bfeb653](https://github.com/marionebl/commitlint/commit/bfeb653))
49+
50+
51+
52+
653
<a name="3.1.2"></a>
754
## 3.1.2 (2017-08-07)
855

@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.2",
3+
"version": "3.1.3",
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.2",
56+
"@commitlint/core": "^3.1.3",
5757
"babel-polyfill": "^6.23.0",
5858
"chalk": "^2.0.1",
5959
"get-stdin": "^5.0.1",

@commitlint/core/CHANGELOG.md

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

@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.2",
3+
"version": "3.1.3",
44
"description": "Lint your commit messages",
55
"main": "lib/index.js",
66
"scripts": {

@commitlint/example-prompt/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.3"></a>
7+
## 3.1.3 (2017-08-21)
8+
9+
10+
11+
<a name="3.1.2"></a>
12+
## 3.1.2 (2017-08-07)
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+
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+
36+
637
<a name="3.1.2"></a>
738
## 3.1.2 (2017-08-07)
839

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

@commitlint/prompt-cli/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.1.3"></a>
7+
## 3.1.3 (2017-08-21)
8+
9+
10+
11+
<a name="3.1.2"></a>
12+
## 3.1.2 (2017-08-07)
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+
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+
### Features
36+
37+
* **prompt-cli:** add standalone prompt interface ([7911040](https://github.com/marionebl/commitlint/commit/7911040))
38+
39+
40+
41+
642
<a name="3.1.2"></a>
743
## 3.1.2 (2017-08-07)
844

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

@commitlint/prompt/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.3"></a>
7+
## 3.1.3 (2017-08-21)
8+
9+
10+
11+
<a name="3.1.2"></a>
12+
## 3.1.2 (2017-08-07)
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+
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+
36+
637
<a name="3.1.2"></a>
738
## 3.1.2 (2017-08-07)
839

@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.2",
3+
"version": "3.1.3",
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.2",
106+
"@commitlint/core": "^3.1.3",
107107
"babel-polyfill": "^6.23.0",
108108
"babel-runtime": "^6.23.0",
109109
"chalk": "^1.1.1",

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.2"
6+
"version": "3.1.3"
77
}

0 commit comments

Comments
 (0)