You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if forcePatchIncrement || isPatch(log) {
return current.IncPatch()
}
means that even if log is empty (no commits since last tag) and forcePatchIncrement is true a new patch version is bumped. But if I am on top a tag means that I am already on a release. IMHO forcePatchIncrement should only work if there are commits (without fix: feat: or ! identifier) on top of the last tag.
The text was updated successfully, but these errors were encountered:
means that even if log is empty (no commits since last tag) and forcePatchIncrement is true a new patch version is bumped. But if I am on top a tag means that I am already on a release. IMHO forcePatchIncrement should only work if there are commits (without fix: feat: or ! identifier) on top of the last tag.
The text was updated successfully, but these errors were encountered: