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 f8c0c55 commit 9914febCopy full SHA for 9914feb
1 file changed
commitizen/defaults.py
@@ -119,6 +119,8 @@ class Settings(TypedDict, total=False):
119
CHANGELOG_FORMAT = "markdown"
120
121
BUMP_PATTERN = r"^((BREAKING[\-\ ]CHANGE|\w+)(\(.+\))?!?):"
122
+
123
+# TODO: remove this in v5
124
BUMP_MAP = dict(
125
(
126
(r"^.+!$", str(VersionIncrement.MAJOR)),
@@ -129,6 +131,8 @@ class Settings(TypedDict, total=False):
129
131
(r"^perf", str(VersionIncrement.PATCH)),
130
132
)
133
134
135
136
BUMP_MAP_MAJOR_VERSION_ZERO = dict(
137
138
(r"^.+!$", str(VersionIncrement.MINOR)),
0 commit comments