conventional-commits-parser 3.2.3 → 3.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -37,6 +37,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
37
37
 
38
38
 
39
39
 
40
+ ### [3.2.4](https://github.com/conventional-changelog/conventional-changelog/compare/conventional-commits-parser-v3.2.3...conventional-commits-parser-v3.2.4) (2021-12-29)
41
+
42
+
43
+ ### Bug Fixes
44
+
45
+ * support BREAKING-CHANGE alongside BREAKING CHANGE ([#882](https://github.com/conventional-changelog/conventional-changelog/issues/882)) ([e6f44ad](https://github.com/conventional-changelog/conventional-changelog/commit/e6f44adcf1ac5abbb85bdac73237c331c6594177))
46
+
40
47
  ### [3.2.3](https://www.github.com/conventional-changelog/conventional-changelog/compare/conventional-commits-parser-v3.2.2...conventional-commits-parser-v3.2.3) (2021-10-23)
41
48
 
42
49
 
package/README.md CHANGED
@@ -201,7 +201,8 @@ Used to define if `issuePrefixes` should be considered case sensitive.
201
201
 
202
202
  ##### noteKeywords
203
203
 
204
- Type: `array` of `string` or `string` Default: `['BREAKING CHANGE']`
204
+ Type: `array` of `string` or `string` Default: `['BREAKING CHANGE',
205
+ 'BREAKING-CHANGE']`
205
206
 
206
207
  Keywords for important notes. This value is case **insensitive**. If it's a `string` it will be converted to an `array` separated by a comma.
207
208
 
package/index.js CHANGED
@@ -21,7 +21,7 @@ function assignOpts (options) {
21
21
  'resolved'
22
22
  ],
23
23
  issuePrefixes: ['#'],
24
- noteKeywords: ['BREAKING CHANGE'],
24
+ noteKeywords: ['BREAKING CHANGE', 'BREAKING-CHANGE'],
25
25
  fieldPattern: /^-(.*?)-$/,
26
26
  revertPattern: /^Revert\s"([\s\S]*)"\s*This reverts commit (\w*)\./,
27
27
  revertCorrespondence: ['header', 'hash'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conventional-commits-parser",
3
- "version": "3.2.3",
3
+ "version": "3.2.4",
4
4
  "description": "Parse raw conventional commits",
5
5
  "bugs": {
6
6
  "url": "https://github.com/conventional-changelog/conventional-changelog/issues"