We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 972d9f5 commit 9c8389aCopy full SHA for 9c8389a
1 file changed
commitizen/defaults.py
@@ -114,6 +114,8 @@ class Settings(TypedDict, total=False):
114
CHANGELOG_FORMAT = "markdown"
115
116
BUMP_PATTERN = r"^((BREAKING[\-\ ]CHANGE|\w+)(\(.+\))?!?):"
117
+
118
+# TODO: remove this in v5
119
BUMP_MAP = dict(
120
(
121
(r"^.+!$", str(VersionIncrement.MAJOR)),
@@ -124,6 +126,8 @@ class Settings(TypedDict, total=False):
124
126
(r"^perf", str(VersionIncrement.PATCH)),
125
127
)
128
129
130
131
BUMP_MAP_MAJOR_VERSION_ZERO = dict(
132
133
(r"^.+!$", str(VersionIncrement.MINOR)),
0 commit comments