diff --git a/@commitlint/cli/CHANGELOG.md b/@commitlint/cli/CHANGELOG.md index df83e59295..8bfacdb15a 100644 --- a/@commitlint/cli/CHANGELOG.md +++ b/@commitlint/cli/CHANGELOG.md @@ -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. + +# 3.2.0 (2017-09-05) + + +### Features + +* add preset parser ([5cd2335](https://github.com/marionebl/commitlint/commit/5cd2335)) + + + + +## 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) + + + + +## 3.1.2 (2017-08-07) + + + + +## 3.1.1 (2017-08-07) + + + + +## 3.0.4 (2017-08-04) + + +### Bug Fixes + +* **core:** correct type validation message ([09c2b26](https://github.com/marionebl/commitlint/commit/09c2b26)) + + + + +## 3.0.3 (2017-07-16) + + + + +## 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)) + + + + ## 3.1.3 (2017-08-21) diff --git a/@commitlint/cli/package.json b/@commitlint/cli/package.json index a9826fca53..0a4401fe06 100644 --- a/@commitlint/cli/package.json +++ b/@commitlint/cli/package.json @@ -1,6 +1,6 @@ { "name": "@commitlint/cli", - "version": "3.1.3", + "version": "3.2.0", "description": "Lint your commit messages", "bin": { "commitlint": "cli.js" @@ -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", diff --git a/@commitlint/core/CHANGELOG.md b/@commitlint/core/CHANGELOG.md index fa4cb78821..2d3e2e2f01 100644 --- a/@commitlint/core/CHANGELOG.md +++ b/@commitlint/core/CHANGELOG.md @@ -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. + +# 3.2.0 (2017-09-05) + + +### Features + +* add preset parser ([5cd2335](https://github.com/marionebl/commitlint/commit/5cd2335)) + + + + +## 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) + + + + +## 3.1.2 (2017-08-07) + + +### Bug Fixes + +* **core:** harden to-lines typecheck ([248010b](https://github.com/marionebl/commitlint/commit/248010b)) + + + + +## 3.1.1 (2017-08-07) + + + + +## 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)) + + + + +## 3.0.3 (2017-07-16) + + + + +## 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)) + + + + ## 3.1.3 (2017-08-21) diff --git a/@commitlint/core/package.json b/@commitlint/core/package.json index 320b5098cb..7e3ae24005 100644 --- a/@commitlint/core/package.json +++ b/@commitlint/core/package.json @@ -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": { @@ -26,7 +26,9 @@ ] }, "babel": { - "presets": ["babel-preset-commitlint"] + "presets": [ + "babel-preset-commitlint" + ] }, "xo": false, "nyc": { @@ -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", diff --git a/@commitlint/example-prompt/CHANGELOG.md b/@commitlint/example-prompt/CHANGELOG.md index 3a1017d81c..ff9b71f18e 100644 --- a/@commitlint/example-prompt/CHANGELOG.md +++ b/@commitlint/example-prompt/CHANGELOG.md @@ -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. + +# 3.2.0 (2017-09-05) + + + + +## 3.1.3 (2017-08-21) + + + + +## 3.1.2 (2017-08-07) + + + + +## 3.1.1 (2017-08-07) + + + + +## 3.0.4 (2017-08-04) + + + + +## 3.0.3 (2017-07-16) + + + + +## 3.0.2 (2017-07-11) + + + + ## 3.1.3 (2017-08-21) diff --git a/@commitlint/example-prompt/package.json b/@commitlint/example-prompt/package.json index 0c2120ed3b..e01d9a16bf 100644 --- a/@commitlint/example-prompt/package.json +++ b/@commitlint/example-prompt/package.json @@ -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" @@ -17,6 +17,6 @@ }, "homepage": "https://github.com/marionebl/commitlint#readme", "devDependencies": { - "@commitlint/prompt-cli": "^3.1.3" + "@commitlint/prompt-cli": "^3.2.0" } } diff --git a/@commitlint/prompt-cli/CHANGELOG.md b/@commitlint/prompt-cli/CHANGELOG.md index ce7da36572..6eba2ad594 100644 --- a/@commitlint/prompt-cli/CHANGELOG.md +++ b/@commitlint/prompt-cli/CHANGELOG.md @@ -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. + +# 3.2.0 (2017-09-05) + + + + +## 3.1.3 (2017-08-21) + + + + +## 3.1.2 (2017-08-07) + + + + +## 3.1.1 (2017-08-07) + + + + +## 3.0.4 (2017-08-04) + + + + +## 3.0.3 (2017-07-16) + + + + +## 3.0.2 (2017-07-11) + + +### Features + +* **prompt-cli:** add standalone prompt interface ([7911040](https://github.com/marionebl/commitlint/commit/7911040)) + + + + ## 3.1.3 (2017-08-21) diff --git a/@commitlint/prompt-cli/package.json b/@commitlint/prompt-cli/package.json index d5509dcb46..2e87f2af45 100644 --- a/@commitlint/prompt-cli/package.json +++ b/@commitlint/prompt-cli/package.json @@ -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" @@ -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" } diff --git a/@commitlint/prompt/CHANGELOG.md b/@commitlint/prompt/CHANGELOG.md index 3a1017d81c..ff9b71f18e 100644 --- a/@commitlint/prompt/CHANGELOG.md +++ b/@commitlint/prompt/CHANGELOG.md @@ -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. + +# 3.2.0 (2017-09-05) + + + + +## 3.1.3 (2017-08-21) + + + + +## 3.1.2 (2017-08-07) + + + + +## 3.1.1 (2017-08-07) + + + + +## 3.0.4 (2017-08-04) + + + + +## 3.0.3 (2017-07-16) + + + + +## 3.0.2 (2017-07-11) + + + + ## 3.1.3 (2017-08-21) diff --git a/@commitlint/prompt/package.json b/@commitlint/prompt/package.json index bda01a8a0c..0de153c256 100644 --- a/@commitlint/prompt/package.json +++ b/@commitlint/prompt/package.json @@ -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": { @@ -25,7 +25,9 @@ ] }, "babel": { - "presets": ["commitlint"] + "presets": [ + "commitlint" + ] }, "config": { "commitizen": { @@ -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", diff --git a/@packages/babel-preset-commitlint/CHANGELOG.md b/@packages/babel-preset-commitlint/CHANGELOG.md new file mode 100644 index 0000000000..8345aa9c81 --- /dev/null +++ b/@packages/babel-preset-commitlint/CHANGELOG.md @@ -0,0 +1,7 @@ +# Change Log + +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. + + +# 3.2.0 (2017-09-05) diff --git a/@packages/babel-preset-commitlint/package.json b/@packages/babel-preset-commitlint/package.json index 3c02fa525b..083f020cd8 100644 --- a/@packages/babel-preset-commitlint/package.json +++ b/@packages/babel-preset-commitlint/package.json @@ -1,6 +1,6 @@ { "name": "babel-preset-commitlint", - "version": "3.1.3", + "version": "3.2.0", "description": "Lint your commit messages", "main": "index.js", "scripts": { diff --git a/@packages/commitlint-config-angular/CHANGELOG.md b/@packages/commitlint-config-angular/CHANGELOG.md index 74a7fa7a74..dd615d9454 100644 --- a/@packages/commitlint-config-angular/CHANGELOG.md +++ b/@packages/commitlint-config-angular/CHANGELOG.md @@ -3,6 +3,12 @@ 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. + +# 3.2.0 (2017-09-05) + + + + ## 3.0.4 (2017-08-04) diff --git a/@packages/commitlint-config-angular/package.json b/@packages/commitlint-config-angular/package.json index 5586c20637..4bcf6d369b 100644 --- a/@packages/commitlint-config-angular/package.json +++ b/@packages/commitlint-config-angular/package.json @@ -1,6 +1,6 @@ { "name": "commitlint-config-angular", - "version": "3.1.1", + "version": "3.2.0", "description": "Shareable commitlint config enforcing the angular commit convention", "scripts": { "test": "exit 0", diff --git a/@packages/commitlint-config-lerna-scopes/CHANGELOG.md b/@packages/commitlint-config-lerna-scopes/CHANGELOG.md index 74a7fa7a74..dd615d9454 100644 --- a/@packages/commitlint-config-lerna-scopes/CHANGELOG.md +++ b/@packages/commitlint-config-lerna-scopes/CHANGELOG.md @@ -3,6 +3,12 @@ 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. + +# 3.2.0 (2017-09-05) + + + + ## 3.0.4 (2017-08-04) diff --git a/@packages/commitlint-config-lerna-scopes/package.json b/@packages/commitlint-config-lerna-scopes/package.json index 69407c4aab..12f5aa0293 100644 --- a/@packages/commitlint-config-lerna-scopes/package.json +++ b/@packages/commitlint-config-lerna-scopes/package.json @@ -1,6 +1,6 @@ { "name": "commitlint-config-lerna-scopes", - "version": "3.1.1", + "version": "3.2.0", "description": "Shareable commitlint config enforcing lerna package names as scopes", "scripts": { "test": "exit 0", diff --git a/@packages/commitlint-config-patternplate/CHANGELOG.md b/@packages/commitlint-config-patternplate/CHANGELOG.md index 74a7fa7a74..dd615d9454 100644 --- a/@packages/commitlint-config-patternplate/CHANGELOG.md +++ b/@packages/commitlint-config-patternplate/CHANGELOG.md @@ -3,6 +3,12 @@ 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. + +# 3.2.0 (2017-09-05) + + + + ## 3.0.4 (2017-08-04) diff --git a/@packages/commitlint-config-patternplate/package.json b/@packages/commitlint-config-patternplate/package.json index 6bc4704ed1..ed8282c417 100644 --- a/@packages/commitlint-config-patternplate/package.json +++ b/@packages/commitlint-config-patternplate/package.json @@ -1,6 +1,6 @@ { "name": "commitlint-config-patternplate", - "version": "3.1.1", + "version": "3.2.0", "description": "Lint your commits, patternplate-style", "scripts": { "test": "exit 0", diff --git a/lerna.json b/lerna.json index 93a16ac838..3e870fec1b 100644 --- a/lerna.json +++ b/lerna.json @@ -4,5 +4,5 @@ "@commitlint/*", "@packages/*" ], - "version": "3.1.3" + "version": "3.2.0" }