conventional-changelog-conventionalcommits
Advanced tools
Comparing version 3.0.2 to 4.0.0
@@ -6,2 +6,21 @@ # Change Log | ||
# [4.0.0](https://github.com/conventional-changelog/conventional-changelog/compare/conventional-changelog-conventionalcommits@3.0.2...conventional-changelog-conventionalcommits@4.0.0) (2019-05-18) | ||
### Bug Fixes | ||
* Recommend a patch bump for features when preMajor is enabled ([#452](https://github.com/conventional-changelog/conventional-changelog/issues/452)) ([3d0a520](https://github.com/conventional-changelog/conventional-changelog/commit/3d0a520)) | ||
* feat!: BREAKING CHANGES are important and should be prioritized (#464) ([f8adba2](https://github.com/conventional-changelog/conventional-changelog/commit/f8adba2)), closes [#464](https://github.com/conventional-changelog/conventional-changelog/issues/464) | ||
### BREAKING CHANGES | ||
* moved BREAKING CHANGES to top of template. | ||
## [3.0.2](https://github.com/conventional-changelog/conventional-changelog/compare/conventional-changelog-conventionalcommits@3.0.1...conventional-changelog-conventionalcommits@3.0.2) (2019-05-05) | ||
@@ -8,0 +27,0 @@ |
@@ -22,7 +22,3 @@ 'use strict' | ||
breakings += commit.notes.length | ||
if (config.preMajor) { | ||
level = 1 | ||
} else { | ||
level = 0 | ||
} | ||
level = 0 | ||
} else if (commit.type === `feat`) { | ||
@@ -36,2 +32,6 @@ features += 1 | ||
if (config.preMajor && level < 2) { | ||
level++ | ||
} | ||
return { | ||
@@ -38,0 +38,0 @@ level: level, |
{ | ||
"name": "conventional-changelog-conventionalcommits", | ||
"version": "3.0.2", | ||
"version": "4.0.0", | ||
"description": "conventional-changelog conventionalcommits.org preset", | ||
@@ -40,3 +40,3 @@ "main": "index.js", | ||
}, | ||
"gitHead": "6fb56a721c6594f2b95d11c4c06a8b0dfad36380" | ||
"gitHead": "38f5508191f8afc1a8503d1fd24e2de6d05b8738" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
17294
237