@lmc-eu/conventional-changelog-lmc-bitbucket
Advanced tools
Comparing version 2.0.3 to 2.0.4
@@ -6,2 +6,16 @@ # Change Log | ||
<a name="2.0.4"></a> | ||
## [2.0.4](https://github.com/lmc-eu/code-quality-tools/compare/@lmc-eu/conventional-changelog-lmc-bitbucket@2.0.3...@lmc-eu/conventional-changelog-lmc-bitbucket@2.0.4) (2022-03-31) | ||
### Bug Fixes | ||
- **conventional-changelog:** Allow parsing `BREAKING CHANGES` as commit type (fixes [#52](https://jira.int.lmc.cz/browse/52), [#54](https://jira.int.lmc.cz/browse/54)) ([aaf0269](https://github.com/lmc-eu/code-quality-tools/commit/aaf0269)) | ||
### Dependencies | ||
- Update dependency jest to v27 ([939ff2b](https://github.com/lmc-eu/code-quality-tools/commit/939ff2b)) | ||
**Note:** Version bump only for package @lmc-eu/conventional-changelog-lmc-bitbucket | ||
<a name="2.0.3"></a> | ||
@@ -8,0 +22,0 @@ |
{ | ||
"name": "@lmc-eu/conventional-changelog-lmc-bitbucket", | ||
"version": "2.0.3", | ||
"version": "2.0.4", | ||
"description": "conventional-changelog LMC preset for BitBucket", | ||
@@ -40,3 +40,3 @@ "keywords": [ | ||
"git-dummy-commit": "1.3.0", | ||
"jest": "26.6.3", | ||
"jest": "27.5.1", | ||
"jest-extended": "0.11.5", | ||
@@ -55,3 +55,3 @@ "shelljs": "0.8.5", | ||
}, | ||
"gitHead": "d9948d3b403667cb3e7576f22b87a7521917835c" | ||
"gitHead": "7821373f09f51e0ac8ecc50b456df28d0337be85" | ||
} |
@@ -43,3 +43,3 @@ const compareFunc = require('compare-func'); | ||
if (commit.type === 'BREAKING CHANGE') { | ||
if (commit.type === 'BREAKING CHANGE' || commit.type === 'BREAKING CHANGES') { | ||
transformedCommit.type = 'BREAKING CHANGES'; | ||
@@ -46,0 +46,0 @@ } else if (commit.type === 'Feat') { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
17334