Skip to content

Commit

Permalink
v3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
marionebl committed Sep 5, 2017
1 parent b21bf71 commit e6ef072
Show file tree
Hide file tree
Showing 19 changed files with 295 additions and 18 deletions.
57 changes: 57 additions & 0 deletions @commitlint/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,63 @@
All notable changes to this project will be documented in this file.
See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

<a name="3.2.0"></a>
# 3.2.0 (2017-09-05)


### Features

* add preset parser ([5cd2335](https://github.com/marionebl/commitlint/commit/5cd2335))



<a name="3.1.3"></a>
## 3.1.3 (2017-08-21)


### Bug Fixes

* **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)



<a name="3.1.2"></a>
## 3.1.2 (2017-08-07)



<a name="3.1.1"></a>
## 3.1.1 (2017-08-07)



<a name="3.0.4"></a>
## 3.0.4 (2017-08-04)


### Bug Fixes

* **core:** correct type validation message ([09c2b26](https://github.com/marionebl/commitlint/commit/09c2b26))



<a name="3.0.3"></a>
## 3.0.3 (2017-07-16)



<a name="3.0.2"></a>
## 3.0.2 (2017-07-11)


### Bug Fixes

* **cli:** remove destructuring for node 4 support ([fe8caff](https://github.com/marionebl/commitlint/commit/fe8caff))
* ensure node4 compat ([bfeb653](https://github.com/marionebl/commitlint/commit/bfeb653))




<a name="3.1.3"></a>
## 3.1.3 (2017-08-21)

Expand Down
4 changes: 2 additions & 2 deletions @commitlint/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@commitlint/cli",
"version": "3.1.3",
"version": "3.2.0",
"description": "Lint your commit messages",
"bin": {
"commitlint": "cli.js"
Expand Down Expand Up @@ -53,7 +53,7 @@
"xo": "^0.18.2"
},
"dependencies": {
"@commitlint/core": "^3.1.3",
"@commitlint/core": "^3.2.0",
"babel-polyfill": "^6.23.0",
"chalk": "^2.0.1",
"get-stdin": "^5.0.1",
Expand Down
78 changes: 78 additions & 0 deletions @commitlint/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,84 @@
All notable changes to this project will be documented in this file.
See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

<a name="3.2.0"></a>
# 3.2.0 (2017-09-05)


### Features

* add preset parser ([5cd2335](https://github.com/marionebl/commitlint/commit/5cd2335))



<a name="3.1.3"></a>
## 3.1.3 (2017-08-21)


### Bug Fixes

* **core:** correct typo in report ([3eb08e8](https://github.com/marionebl/commitlint/commit/3eb08e8))
* **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)



<a name="3.1.2"></a>
## 3.1.2 (2017-08-07)


### Bug Fixes

* **core:** harden to-lines typecheck ([248010b](https://github.com/marionebl/commitlint/commit/248010b))



<a name="3.1.1"></a>
## 3.1.1 (2017-08-07)



<a name="3.0.4"></a>
## 3.0.4 (2017-08-04)


### Bug Fixes

* **core:** correct type validation message ([09c2b26](https://github.com/marionebl/commitlint/commit/09c2b26))


### Features

* **core:** add Signed-off-by rule ([cefeb74](https://github.com/marionebl/commitlint/commit/cefeb74))



<a name="3.0.3"></a>
## 3.0.3 (2017-07-16)



<a name="3.0.2"></a>
## 3.0.2 (2017-07-11)


### Bug Fixes

* enable recursive relative extends ([4decd4d](https://github.com/marionebl/commitlint/commit/4decd4d))
* ensure node4 compat ([bfeb653](https://github.com/marionebl/commitlint/commit/bfeb653))
* **core:** ignore version commits with leading whitespace ([9551bd6](https://github.com/marionebl/commitlint/commit/9551bd6))
* **core:** resolve extends relative to config file ([0dd18bc](https://github.com/marionebl/commitlint/commit/0dd18bc))
* use conventional-changelog-angular again ([633d835](https://github.com/marionebl/commitlint/commit/633d835))


### Features

* **core:** do not prefix relative extends ([8fbbaed](https://github.com/marionebl/commitlint/commit/8fbbaed))
* **core:** readd support for .conventional-changelog-lintrc ([02e4f43](https://github.com/marionebl/commitlint/commit/02e4f43))
* **core:** support conventional-changelog-lint-config-* ([c80766b](https://github.com/marionebl/commitlint/commit/c80766b))




<a name="3.1.3"></a>
## 3.1.3 (2017-08-21)

Expand Down
8 changes: 5 additions & 3 deletions @commitlint/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@commitlint/core",
"version": "3.1.3",
"version": "3.2.0",
"description": "Lint your commit messages",
"main": "lib/index.js",
"scripts": {
Expand All @@ -26,7 +26,9 @@
]
},
"babel": {
"presets": ["babel-preset-commitlint"]
"presets": [
"babel-preset-commitlint"
]
},
"xo": false,
"nyc": {
Expand Down Expand Up @@ -64,7 +66,7 @@
"ansi-styles": "3.1.0",
"ava": "0.18.2",
"babel-cli": "^6.18.0",
"babel-preset-commitlint": "^3.1.3",
"babel-preset-commitlint": "^3.2.0",
"babel-register": "6.24.1",
"cross-env": "^5.0.1",
"denodeify": "1.2.1",
Expand Down
36 changes: 36 additions & 0 deletions @commitlint/example-prompt/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,42 @@
All notable changes to this project will be documented in this file.
See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

<a name="3.2.0"></a>
# 3.2.0 (2017-09-05)



<a name="3.1.3"></a>
## 3.1.3 (2017-08-21)



<a name="3.1.2"></a>
## 3.1.2 (2017-08-07)



<a name="3.1.1"></a>
## 3.1.1 (2017-08-07)



<a name="3.0.4"></a>
## 3.0.4 (2017-08-04)



<a name="3.0.3"></a>
## 3.0.3 (2017-07-16)



<a name="3.0.2"></a>
## 3.0.2 (2017-07-11)




<a name="3.1.3"></a>
## 3.1.3 (2017-08-21)

Expand Down
4 changes: 2 additions & 2 deletions @commitlint/example-prompt/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@commitlint/example-prompt",
"private": true,
"version": "3.1.3",
"version": "3.2.0",
"description": "Example for prompt guide",
"scripts": {
"commit": "commit"
Expand All @@ -17,6 +17,6 @@
},
"homepage": "https://github.com/marionebl/commitlint#readme",
"devDependencies": {
"@commitlint/prompt-cli": "^3.1.3"
"@commitlint/prompt-cli": "^3.2.0"
}
}
41 changes: 41 additions & 0 deletions @commitlint/prompt-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,47 @@
All notable changes to this project will be documented in this file.
See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

<a name="3.2.0"></a>
# 3.2.0 (2017-09-05)



<a name="3.1.3"></a>
## 3.1.3 (2017-08-21)



<a name="3.1.2"></a>
## 3.1.2 (2017-08-07)



<a name="3.1.1"></a>
## 3.1.1 (2017-08-07)



<a name="3.0.4"></a>
## 3.0.4 (2017-08-04)



<a name="3.0.3"></a>
## 3.0.3 (2017-07-16)



<a name="3.0.2"></a>
## 3.0.2 (2017-07-11)


### Features

* **prompt-cli:** add standalone prompt interface ([7911040](https://github.com/marionebl/commitlint/commit/7911040))




<a name="3.1.3"></a>
## 3.1.3 (2017-08-21)

Expand Down
4 changes: 2 additions & 2 deletions @commitlint/prompt-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@commitlint/prompt-cli",
"version": "3.1.3",
"version": "3.2.0",
"description": "commit prompt using commitlint.config.js",
"bin": {
"commit": "./cli.js"
Expand Down Expand Up @@ -29,7 +29,7 @@
"@commitlint/utils": "^3.1.1"
},
"dependencies": {
"@commitlint/prompt": "^3.1.3",
"@commitlint/prompt": "^3.2.0",
"execa": "^0.7.0",
"meow": "^3.7.0"
}
Expand Down
36 changes: 36 additions & 0 deletions @commitlint/prompt/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,42 @@
All notable changes to this project will be documented in this file.
See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

<a name="3.2.0"></a>
# 3.2.0 (2017-09-05)



<a name="3.1.3"></a>
## 3.1.3 (2017-08-21)



<a name="3.1.2"></a>
## 3.1.2 (2017-08-07)



<a name="3.1.1"></a>
## 3.1.1 (2017-08-07)



<a name="3.0.4"></a>
## 3.0.4 (2017-08-04)



<a name="3.0.3"></a>
## 3.0.3 (2017-07-16)



<a name="3.0.2"></a>
## 3.0.2 (2017-07-11)




<a name="3.1.3"></a>
## 3.1.3 (2017-08-21)

Expand Down
10 changes: 6 additions & 4 deletions @commitlint/prompt/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@commitlint/prompt",
"version": "3.1.3",
"version": "3.2.0",
"description": "commitizen prompt using commitlint.config.js",
"main": "./lib/index.js",
"scripts": {
Expand All @@ -25,7 +25,9 @@
]
},
"babel": {
"presets": ["commitlint"]
"presets": [
"commitlint"
]
},
"config": {
"commitizen": {
Expand Down Expand Up @@ -54,14 +56,14 @@
"@commitlint/utils": "^3.1.1",
"ava": "^0.20.0",
"babel-cli": "^6.24.1",
"babel-preset-commitlint": "3.1.3",
"babel-preset-commitlint": "^3.2.0",
"babel-register": "^6.24.1",
"commitizen": "^2.9.6",
"cross-env": "^5.0.1",
"throat": "^4.1.0"
},
"dependencies": {
"@commitlint/core": "^3.1.3",
"@commitlint/core": "^3.2.0",
"babel-runtime": "^6.23.0",
"chalk": "^1.1.1",
"lodash": "^4.17.4",
Expand Down
Loading

0 comments on commit e6ef072

Please sign in to comment.