|
8 | 8 | from commitizen.cz.conventional_commits import ConventionalCommitsCz
|
9 | 9 | from commitizen.git import GitCommit
|
10 | 10 |
|
11 |
| -NONE_INCREMENT_CC = ["docs(README): motivation", "ci: added travis"] |
| 11 | +NONE_INCREMENT_CC = [ |
| 12 | + "docs(README): motivation", |
| 13 | + "ci: added travis", |
| 14 | + "performance. Remove or disable the reimplemented linters", |
| 15 | + "refactor that how this line starts", |
| 16 | +] |
12 | 17 |
|
13 | 18 | PATCH_INCREMENTS_CC = [
|
14 | 19 | "fix(setup.py): future is now required for every python version",
|
|
19 | 24 | "feat(cli): added version",
|
20 | 25 | "docs(README): motivation",
|
21 | 26 | "fix(setup.py): future is now required for every python version",
|
| 27 | + "perf: app is much faster", |
| 28 | + "refactor: app is much faster", |
22 | 29 | ]
|
23 | 30 |
|
24 | 31 | MAJOR_INCREMENTS_BREAKING_CHANGE_CC = [
|
|
41 | 48 | "fix(setup.py): future is now required for every python version",
|
42 | 49 | ]
|
43 | 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", |
| 58 | + "fix(setup.py): future is now required for every python version", |
| 59 | +] |
| 60 | + |
44 | 61 | PATCH_INCREMENTS_SVE = ["readme motivation PATCH", "fix setup.py PATCH"]
|
45 | 62 |
|
46 | 63 | MINOR_INCREMENTS_SVE = [
|
|
67 | 84 | (MINOR_INCREMENTS_CC, "MINOR"),
|
68 | 85 | (MAJOR_INCREMENTS_BREAKING_CHANGE_CC, "MAJOR"),
|
69 | 86 | (MAJOR_INCREMENTS_BREAKING_CHANGE_ALT_CC, "MAJOR"),
|
| 87 | + (MAJOR_INCREMENTS_EXCLAMATION_OTHER_TYPE_CC, "MAJOR"), |
70 | 88 | (MAJOR_INCREMENTS_EXCLAMATION_CC, "MAJOR"),
|
| 89 | + (MAJOR_INCREMENTS_EXCLAMATION_CC_SAMPLE_2, "MAJOR"), |
71 | 90 | (NONE_INCREMENT_CC, None),
|
72 | 91 | ),
|
73 | 92 | )
|
|
0 commit comments