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 9211505 commit 041d5bbCopy full SHA for 041d5bb
tests/test_bump_find_increment.py
@@ -48,6 +48,10 @@
48
"fix(setup.py): future is now required for every python version",
49
]
50
51
+MAJOR_INCREMENTS_EXCLAMATION_CC_SAMPLE_2 = [
52
+ "feat(pipeline)!: some text with breaking change"
53
+]
54
+
55
MAJOR_INCREMENTS_EXCLAMATION_OTHER_TYPE_CC = [
56
"chore!: drop support for Python 3.9",
57
"docs(README): motivation",
@@ -82,6 +86,7 @@
82
86
(MAJOR_INCREMENTS_BREAKING_CHANGE_ALT_CC, "MAJOR"),
83
87
(MAJOR_INCREMENTS_EXCLAMATION_OTHER_TYPE_CC, "MAJOR"),
84
88
(MAJOR_INCREMENTS_EXCLAMATION_CC, "MAJOR"),
89
+ (MAJOR_INCREMENTS_EXCLAMATION_CC_SAMPLE_2, "MAJOR"),
85
90
(NONE_INCREMENT_CC, None),
91
),
92
)
0 commit comments