commitizen 4.13.0__py3-none-any.whl → 4.13.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- commitizen/__version__.py +1 -1
- commitizen/changelog_formats/base.py +7 -9
- commitizen/commands/changelog.py +5 -6
- commitizen/commands/commit.py +1 -3
- commitizen/commands/init.py +4 -3
- commitizen/config/__init__.py +10 -18
- commitizen/config/base_config.py +7 -1
- commitizen/config/json_config.py +7 -2
- commitizen/config/toml_config.py +11 -7
- commitizen/config/yaml_config.py +7 -4
- commitizen/cz/conventional_commits/conventional_commits.py +3 -4
- commitizen/cz/jira/jira.py +3 -4
- commitizen/providers/cargo_provider.py +1 -1
- commitizen/providers/npm_provider.py +2 -2
- commitizen/tags.py +22 -25
- {commitizen-4.13.0.dist-info → commitizen-4.13.2.dist-info}/METADATA +1 -1
- {commitizen-4.13.0.dist-info → commitizen-4.13.2.dist-info}/RECORD +19 -19
- {commitizen-4.13.0.dist-info → commitizen-4.13.2.dist-info}/WHEEL +0 -0
- {commitizen-4.13.0.dist-info → commitizen-4.13.2.dist-info}/entry_points.txt +0 -0
commitizen/__version__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "4.13.
|
|
1
|
+
__version__ = "4.13.2"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
2
|
|
|
3
|
-
import os
|
|
4
3
|
from abc import ABCMeta
|
|
4
|
+
from pathlib import Path
|
|
5
5
|
from typing import IO, TYPE_CHECKING, Any, ClassVar
|
|
6
6
|
|
|
7
7
|
from commitizen.changelog import IncrementalMergeInfo, Metadata
|
|
@@ -36,12 +36,11 @@ class BaseFormat(ChangelogFormat, metaclass=ABCMeta):
|
|
|
36
36
|
)
|
|
37
37
|
|
|
38
38
|
def get_metadata(self, filepath: str) -> Metadata:
|
|
39
|
-
|
|
39
|
+
file = Path(filepath)
|
|
40
|
+
if not file.is_file():
|
|
40
41
|
return Metadata()
|
|
41
42
|
|
|
42
|
-
with open(
|
|
43
|
-
filepath, encoding=self.config.settings["encoding"]
|
|
44
|
-
) as changelog_file:
|
|
43
|
+
with file.open(encoding=self.config.settings["encoding"]) as changelog_file:
|
|
45
44
|
return self.get_metadata_from_file(changelog_file)
|
|
46
45
|
|
|
47
46
|
def get_metadata_from_file(self, file: IO[Any]) -> Metadata:
|
|
@@ -74,12 +73,11 @@ class BaseFormat(ChangelogFormat, metaclass=ABCMeta):
|
|
|
74
73
|
return meta
|
|
75
74
|
|
|
76
75
|
def get_latest_full_release(self, filepath: str) -> IncrementalMergeInfo:
|
|
77
|
-
|
|
76
|
+
file = Path(filepath)
|
|
77
|
+
if not file.is_file():
|
|
78
78
|
return IncrementalMergeInfo()
|
|
79
79
|
|
|
80
|
-
with open(
|
|
81
|
-
filepath, encoding=self.config.settings["encoding"]
|
|
82
|
-
) as changelog_file:
|
|
80
|
+
with file.open(encoding=self.config.settings["encoding"]) as changelog_file:
|
|
83
81
|
return self.get_latest_full_release_from_file(changelog_file)
|
|
84
82
|
|
|
85
83
|
def get_latest_full_release_from_file(self, file: IO[Any]) -> IncrementalMergeInfo:
|
commitizen/commands/changelog.py
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
2
|
|
|
3
|
-
import os
|
|
4
|
-
import os.path
|
|
5
3
|
from difflib import SequenceMatcher
|
|
6
4
|
from operator import itemgetter
|
|
7
5
|
from pathlib import Path
|
|
@@ -66,7 +64,7 @@ class Changelog:
|
|
|
66
64
|
f"or the setting `changelog_file` in {self.config.path}"
|
|
67
65
|
)
|
|
68
66
|
self.file_name = (
|
|
69
|
-
|
|
67
|
+
Path(self.config.path.parent, changelog_file_name).as_posix()
|
|
70
68
|
if self.config.path is not None
|
|
71
69
|
else changelog_file_name
|
|
72
70
|
)
|
|
@@ -282,9 +280,10 @@ class Changelog:
|
|
|
282
280
|
raise DryRunExit()
|
|
283
281
|
|
|
284
282
|
lines = []
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
283
|
+
changelog_path = Path(self.file_name)
|
|
284
|
+
if self.incremental and changelog_path.is_file():
|
|
285
|
+
with changelog_path.open(
|
|
286
|
+
encoding=self.config.settings["encoding"]
|
|
288
287
|
) as changelog_file:
|
|
289
288
|
lines = changelog_file.readlines()
|
|
290
289
|
|
commitizen/commands/commit.py
CHANGED
|
@@ -61,9 +61,7 @@ class Commit:
|
|
|
61
61
|
return None
|
|
62
62
|
|
|
63
63
|
# Read commit message from backup
|
|
64
|
-
with open(
|
|
65
|
-
self.backup_file_path, encoding=self.config.settings["encoding"]
|
|
66
|
-
) as f:
|
|
64
|
+
with self.backup_file_path.open(encoding=self.config.settings["encoding"]) as f:
|
|
67
65
|
return f.read().strip()
|
|
68
66
|
|
|
69
67
|
def _get_message_by_prompt_commit_questions(self) -> str:
|
commitizen/commands/init.py
CHANGED
|
@@ -288,11 +288,12 @@ class Init:
|
|
|
288
288
|
],
|
|
289
289
|
}
|
|
290
290
|
|
|
291
|
-
|
|
291
|
+
pre_commit_config_path = Path(self._PRE_COMMIT_CONFIG_PATH)
|
|
292
|
+
if not pre_commit_config_path.is_file():
|
|
292
293
|
return {"repos": [CZ_HOOK_CONFIG]}
|
|
293
294
|
|
|
294
|
-
with open(
|
|
295
|
-
|
|
295
|
+
with pre_commit_config_path.open(
|
|
296
|
+
encoding=self.config.settings["encoding"]
|
|
296
297
|
) as config_file:
|
|
297
298
|
config_data: dict[str, Any] = yaml.safe_load(config_file) or {}
|
|
298
299
|
|
commitizen/config/__init__.py
CHANGED
|
@@ -13,40 +13,32 @@ def _resolve_config_candidates() -> list[BaseConfig]:
|
|
|
13
13
|
git_project_root = git.find_git_project_root()
|
|
14
14
|
cfg_search_paths = [Path(".")]
|
|
15
15
|
|
|
16
|
-
if git_project_root and
|
|
16
|
+
if git_project_root and cfg_search_paths[0].resolve() != git_project_root.resolve():
|
|
17
17
|
cfg_search_paths.append(git_project_root)
|
|
18
18
|
|
|
19
|
-
# The following algorithm is ugly, but we need to ensure that the order of the candidates are preserved before v5.
|
|
20
|
-
# Also, the number of possible config files is limited, so the complexity is not a problem.
|
|
21
19
|
candidates: list[BaseConfig] = []
|
|
22
20
|
for dir in cfg_search_paths:
|
|
23
21
|
for filename in defaults.CONFIG_FILES:
|
|
24
|
-
out_path = dir /
|
|
25
|
-
if (
|
|
26
|
-
out_path
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
)
|
|
30
|
-
and not (conf := _create_config_from_path(out_path)).is_empty_config
|
|
31
|
-
):
|
|
32
|
-
candidates.append(conf)
|
|
22
|
+
out_path = dir / filename
|
|
23
|
+
if out_path.is_file():
|
|
24
|
+
conf = _create_config_from_path(out_path)
|
|
25
|
+
if conf.contains_commitizen_section():
|
|
26
|
+
candidates.append(conf)
|
|
33
27
|
return candidates
|
|
34
28
|
|
|
35
29
|
|
|
36
30
|
def _create_config_from_path(path: Path) -> BaseConfig:
|
|
37
|
-
with open(
|
|
38
|
-
data
|
|
39
|
-
|
|
40
|
-
return create_config(data=data, path=path)
|
|
31
|
+
with path.open("rb") as f:
|
|
32
|
+
return create_config(data=f.read(), path=path)
|
|
41
33
|
|
|
42
34
|
|
|
43
35
|
def read_cfg(filepath: str | None = None) -> BaseConfig:
|
|
44
36
|
if filepath is not None:
|
|
45
37
|
conf_path = Path(filepath)
|
|
46
|
-
if not conf_path.
|
|
38
|
+
if not conf_path.is_file():
|
|
47
39
|
raise ConfigFileNotFound()
|
|
48
40
|
conf = _create_config_from_path(conf_path)
|
|
49
|
-
if conf.
|
|
41
|
+
if not conf.contains_commitizen_section():
|
|
50
42
|
raise ConfigFileIsEmpty()
|
|
51
43
|
return conf
|
|
52
44
|
|
commitizen/config/base_config.py
CHANGED
|
@@ -17,10 +17,16 @@ if TYPE_CHECKING:
|
|
|
17
17
|
|
|
18
18
|
class BaseConfig:
|
|
19
19
|
def __init__(self) -> None:
|
|
20
|
-
self.is_empty_config = False
|
|
21
20
|
self._settings: Settings = DEFAULT_SETTINGS.copy()
|
|
22
21
|
self._path: Path | None = None
|
|
23
22
|
|
|
23
|
+
def contains_commitizen_section(self) -> bool:
|
|
24
|
+
"""Check if the config file contains a commitizen section.
|
|
25
|
+
|
|
26
|
+
The implementation is different for each config file type.
|
|
27
|
+
"""
|
|
28
|
+
raise NotImplementedError()
|
|
29
|
+
|
|
24
30
|
@property
|
|
25
31
|
def settings(self) -> Settings:
|
|
26
32
|
return self._settings
|
commitizen/config/json_config.py
CHANGED
|
@@ -25,6 +25,11 @@ class JsonConfig(BaseConfig):
|
|
|
25
25
|
self.path = path
|
|
26
26
|
self._parse_setting(data)
|
|
27
27
|
|
|
28
|
+
def contains_commitizen_section(self) -> bool:
|
|
29
|
+
with self.path.open("rb") as json_file:
|
|
30
|
+
config_doc = json.load(json_file)
|
|
31
|
+
return config_doc.get("commitizen") is not None
|
|
32
|
+
|
|
28
33
|
def init_empty_config_content(self) -> None:
|
|
29
34
|
with smart_open(
|
|
30
35
|
self.path, "a", encoding=self._settings["encoding"]
|
|
@@ -32,7 +37,7 @@ class JsonConfig(BaseConfig):
|
|
|
32
37
|
json.dump({"commitizen": {}}, json_file)
|
|
33
38
|
|
|
34
39
|
def set_key(self, key: str, value: object) -> Self:
|
|
35
|
-
with
|
|
40
|
+
with self.path.open("rb") as f:
|
|
36
41
|
config_doc = json.load(f)
|
|
37
42
|
|
|
38
43
|
config_doc["commitizen"][key] = value
|
|
@@ -59,4 +64,4 @@ class JsonConfig(BaseConfig):
|
|
|
59
64
|
try:
|
|
60
65
|
self.settings.update(doc["commitizen"])
|
|
61
66
|
except KeyError:
|
|
62
|
-
|
|
67
|
+
pass
|
commitizen/config/toml_config.py
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
2
|
|
|
3
|
-
import os
|
|
4
3
|
from typing import TYPE_CHECKING
|
|
5
4
|
|
|
6
5
|
from tomlkit import TOMLDocument, exceptions, parse, table
|
|
@@ -26,27 +25,32 @@ class TomlConfig(BaseConfig):
|
|
|
26
25
|
self.path = path
|
|
27
26
|
self._parse_setting(data)
|
|
28
27
|
|
|
28
|
+
def contains_commitizen_section(self) -> bool:
|
|
29
|
+
with self.path.open("rb") as f:
|
|
30
|
+
config_doc = parse(f.read())
|
|
31
|
+
return config_doc.get("tool", {}).get("commitizen") is not None
|
|
32
|
+
|
|
29
33
|
def init_empty_config_content(self) -> None:
|
|
30
34
|
config_doc = TOMLDocument()
|
|
31
|
-
if
|
|
32
|
-
with
|
|
35
|
+
if self.path.is_file():
|
|
36
|
+
with self.path.open("rb") as input_toml_file:
|
|
33
37
|
config_doc = parse(input_toml_file.read())
|
|
34
38
|
|
|
35
39
|
if config_doc.get("tool") is None:
|
|
36
40
|
config_doc["tool"] = table()
|
|
37
41
|
config_doc["tool"]["commitizen"] = table() # type: ignore[index]
|
|
38
42
|
|
|
39
|
-
with
|
|
43
|
+
with self.path.open("wb") as output_toml_file:
|
|
40
44
|
output_toml_file.write(
|
|
41
45
|
config_doc.as_string().encode(self._settings["encoding"])
|
|
42
46
|
)
|
|
43
47
|
|
|
44
48
|
def set_key(self, key: str, value: object) -> Self:
|
|
45
|
-
with
|
|
49
|
+
with self.path.open("rb") as f:
|
|
46
50
|
config_doc = parse(f.read())
|
|
47
51
|
|
|
48
52
|
config_doc["tool"]["commitizen"][key] = value # type: ignore[index]
|
|
49
|
-
with
|
|
53
|
+
with self.path.open("wb") as f:
|
|
50
54
|
f.write(config_doc.as_string().encode(self._settings["encoding"]))
|
|
51
55
|
|
|
52
56
|
return self
|
|
@@ -67,4 +71,4 @@ class TomlConfig(BaseConfig):
|
|
|
67
71
|
try:
|
|
68
72
|
self.settings.update(doc["tool"]["commitizen"]) # type: ignore[index,typeddict-item] # TODO: fix this
|
|
69
73
|
except exceptions.NonExistentKey:
|
|
70
|
-
|
|
74
|
+
pass
|
commitizen/config/yaml_config.py
CHANGED
|
@@ -32,6 +32,11 @@ class YAMLConfig(BaseConfig):
|
|
|
32
32
|
) as json_file:
|
|
33
33
|
yaml.dump({"commitizen": {}}, json_file, explicit_start=True)
|
|
34
34
|
|
|
35
|
+
def contains_commitizen_section(self) -> bool:
|
|
36
|
+
with self.path.open("rb") as yaml_file:
|
|
37
|
+
config_doc = yaml.load(yaml_file, Loader=yaml.FullLoader)
|
|
38
|
+
return config_doc.get("commitizen") is not None
|
|
39
|
+
|
|
35
40
|
def _parse_setting(self, data: bytes | str) -> None:
|
|
36
41
|
"""We expect to have a section in cz.yaml looking like
|
|
37
42
|
|
|
@@ -40,8 +45,6 @@ class YAMLConfig(BaseConfig):
|
|
|
40
45
|
name: cz_conventional_commits
|
|
41
46
|
```
|
|
42
47
|
"""
|
|
43
|
-
import yaml.scanner
|
|
44
|
-
|
|
45
48
|
try:
|
|
46
49
|
doc = yaml.safe_load(data)
|
|
47
50
|
except yaml.YAMLError as e:
|
|
@@ -50,10 +53,10 @@ class YAMLConfig(BaseConfig):
|
|
|
50
53
|
try:
|
|
51
54
|
self.settings.update(doc["commitizen"])
|
|
52
55
|
except (KeyError, TypeError):
|
|
53
|
-
|
|
56
|
+
pass
|
|
54
57
|
|
|
55
58
|
def set_key(self, key: str, value: object) -> Self:
|
|
56
|
-
with
|
|
59
|
+
with self.path.open("rb") as yaml_file:
|
|
57
60
|
config_doc = yaml.load(yaml_file, Loader=yaml.FullLoader)
|
|
58
61
|
|
|
59
62
|
config_doc["commitizen"][key] = value
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
2
|
|
|
3
|
-
import
|
|
3
|
+
from pathlib import Path
|
|
4
4
|
from typing import TYPE_CHECKING, TypedDict
|
|
5
5
|
|
|
6
6
|
from commitizen import defaults
|
|
@@ -214,7 +214,6 @@ class ConventionalCommitsCz(BaseCommitizen):
|
|
|
214
214
|
)
|
|
215
215
|
|
|
216
216
|
def info(self) -> str:
|
|
217
|
-
|
|
218
|
-
filepath
|
|
219
|
-
with open(filepath, encoding=self.config.settings["encoding"]) as f:
|
|
217
|
+
filepath = Path(__file__).parent / "conventional_commits_info.txt"
|
|
218
|
+
with filepath.open(encoding=self.config.settings["encoding"]) as f:
|
|
220
219
|
return f.read()
|
commitizen/cz/jira/jira.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
2
|
|
|
3
|
-
import
|
|
3
|
+
from pathlib import Path
|
|
4
4
|
from typing import TYPE_CHECKING
|
|
5
5
|
|
|
6
6
|
from commitizen.cz.base import BaseCommitizen
|
|
@@ -73,7 +73,6 @@ class JiraSmartCz(BaseCommitizen):
|
|
|
73
73
|
return r".*[A-Z]{2,}\-[0-9]+( #| .* #).+( #.+)*"
|
|
74
74
|
|
|
75
75
|
def info(self) -> str:
|
|
76
|
-
|
|
77
|
-
filepath
|
|
78
|
-
with open(filepath, encoding=self.config.settings["encoding"]) as f:
|
|
76
|
+
filepath = Path(__file__).parent / "jira_info.txt"
|
|
77
|
+
with filepath.open(encoding=self.config.settings["encoding"]) as f:
|
|
79
78
|
return f.read()
|
|
@@ -39,7 +39,7 @@ class CargoProvider(TomlProvider):
|
|
|
39
39
|
|
|
40
40
|
def set_version(self, version: str) -> None:
|
|
41
41
|
super().set_version(version)
|
|
42
|
-
if self.lock_file.
|
|
42
|
+
if self.lock_file.is_file():
|
|
43
43
|
self.set_lock_version(version)
|
|
44
44
|
|
|
45
45
|
def set_lock_version(self, version: str) -> None:
|
|
@@ -46,14 +46,14 @@ class NpmProvider(VersionProvider):
|
|
|
46
46
|
self.package_file.write_text(
|
|
47
47
|
json.dumps(package_document, indent=self.indent) + "\n"
|
|
48
48
|
)
|
|
49
|
-
if self.lock_file.
|
|
49
|
+
if self.lock_file.is_file():
|
|
50
50
|
lock_document = self.set_lock_version(
|
|
51
51
|
json.loads(self.lock_file.read_text()), version
|
|
52
52
|
)
|
|
53
53
|
self.lock_file.write_text(
|
|
54
54
|
json.dumps(lock_document, indent=self.indent) + "\n"
|
|
55
55
|
)
|
|
56
|
-
if self.shrinkwrap_file.
|
|
56
|
+
if self.shrinkwrap_file.is_file():
|
|
57
57
|
shrinkwrap_document = self.set_shrinkwrap_version(
|
|
58
58
|
json.loads(self.shrinkwrap_file.read_text()), version
|
|
59
59
|
)
|
commitizen/tags.py
CHANGED
|
@@ -154,24 +154,13 @@ class TagRules:
|
|
|
154
154
|
candidates = (
|
|
155
155
|
m for regex in self.version_regexes if (m := regex.fullmatch(tag.name))
|
|
156
156
|
)
|
|
157
|
-
if not (
|
|
157
|
+
if not (match := next(candidates, None)):
|
|
158
158
|
raise InvalidVersion(self._version_tag_error(tag.name))
|
|
159
|
-
if "version" in m.groupdict():
|
|
160
|
-
return self.scheme(m.group("version"))
|
|
161
159
|
|
|
162
|
-
|
|
163
|
-
|
|
160
|
+
if version := match.groupdict().get("version"):
|
|
161
|
+
return self.scheme(version)
|
|
164
162
|
|
|
165
|
-
|
|
166
|
-
version = f"{version}.{minor}"
|
|
167
|
-
if patch := parts.get("patch"):
|
|
168
|
-
version = f"{version}.{patch}"
|
|
169
|
-
|
|
170
|
-
if parts.get("prerelease"):
|
|
171
|
-
version = f"{version}-{parts['prerelease']}"
|
|
172
|
-
if parts.get("devrelease"):
|
|
173
|
-
version = f"{version}{parts['devrelease']}"
|
|
174
|
-
return self.scheme(version)
|
|
163
|
+
return self.scheme(self._extract_version(match))
|
|
175
164
|
|
|
176
165
|
def include_in_changelog(self, tag: GitTag) -> bool:
|
|
177
166
|
"""Check if a tag should be included in the changelog"""
|
|
@@ -195,19 +184,14 @@ class TagRules:
|
|
|
195
184
|
|
|
196
185
|
match = matches[-1 if last else 0]
|
|
197
186
|
|
|
198
|
-
|
|
199
|
-
|
|
187
|
+
groups = match.groupdict()
|
|
188
|
+
if version := groups.get("version"):
|
|
189
|
+
return VersionTag(version, match.group(0))
|
|
200
190
|
|
|
201
|
-
|
|
202
|
-
try:
|
|
203
|
-
version = f"{parts['major']}.{parts['minor']}.{parts['patch']}"
|
|
204
|
-
except KeyError:
|
|
191
|
+
if not all(value in groups for value in ["major", "minor", "patch"]):
|
|
205
192
|
return None
|
|
206
193
|
|
|
207
|
-
|
|
208
|
-
version = f"{version}-{parts['prerelease']}"
|
|
209
|
-
if parts.get("devrelease"):
|
|
210
|
-
version = f"{version}{parts['devrelease']}"
|
|
194
|
+
version = self._extract_version(match)
|
|
211
195
|
return VersionTag(version, match.group(0))
|
|
212
196
|
|
|
213
197
|
def normalize_tag(
|
|
@@ -284,3 +268,16 @@ class TagRules:
|
|
|
284
268
|
ignored_tag_formats=settings["ignored_tag_formats"],
|
|
285
269
|
merge_prereleases=settings["changelog_merge_prerelease"],
|
|
286
270
|
)
|
|
271
|
+
|
|
272
|
+
def _extract_version(self, match: re.Match[str]) -> str:
|
|
273
|
+
groups = match.groupdict()
|
|
274
|
+
parts: list[str] = [groups["major"]]
|
|
275
|
+
if minor := groups.get("minor"):
|
|
276
|
+
parts.append(f".{minor}")
|
|
277
|
+
if patch := groups.get("patch"):
|
|
278
|
+
parts.append(f".{patch}")
|
|
279
|
+
if prerelease := groups.get("prerelease"):
|
|
280
|
+
parts.append(f"-{prerelease}")
|
|
281
|
+
if devrelease := groups.get("devrelease"):
|
|
282
|
+
parts.append(devrelease)
|
|
283
|
+
return "".join(parts)
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
commitizen/__init__.py,sha256=oOBG9f3DtTPmFnqXnwvuh1XIw9kqf_-cyrFYlRaZ1fQ,593
|
|
2
2
|
commitizen/__main__.py,sha256=ythPim4R6rgC0zU9siklq1oSbkk2HlbiNpwwoegk8uE,71
|
|
3
|
-
commitizen/__version__.py,sha256=
|
|
3
|
+
commitizen/__version__.py,sha256=idpNMtxDYUTjhrcN9xIi-wIuzZpWEdWrn5pYd6O3qvE,23
|
|
4
4
|
commitizen/bump.py,sha256=-C09y5sAlVPyWTbEgqZimQMlz6LL248Ht2Pv90Ks6Dg,4692
|
|
5
5
|
commitizen/changelog.py,sha256=ydaFUSHUBPpdNjw_yoPJ1_pr3AAr9rHS-NwP8gQDIUA,11278
|
|
6
6
|
commitizen/changelog_formats/__init__.py,sha256=ZkxdmGybxWTzQZbt5KTJdAdbdKx0-v3aXtNDC-efRQk,3369
|
|
7
7
|
commitizen/changelog_formats/asciidoc.py,sha256=yBhD_dy4TLKuVdU0Ug1WHKhfQfwXz9P7kgoRuivLefk,754
|
|
8
|
-
commitizen/changelog_formats/base.py,sha256=
|
|
8
|
+
commitizen/changelog_formats/base.py,sha256=9xJEfCv8pXgd1y9PaO9OrvVAPeYOUDexO_9nuUg72rE,4394
|
|
9
9
|
commitizen/changelog_formats/markdown.py,sha256=4eAO9XmNGVQxJsIAY7be_V19gEP4xSKN71ScEv2cRBg,725
|
|
10
10
|
commitizen/changelog_formats/restructuredtext.py,sha256=Dsm6DSxqYWRgybhnRedCN-X8Sg8o1PbzKTPg4hZqOI8,2893
|
|
11
11
|
commitizen/changelog_formats/textile.py,sha256=0GiY3c5P6kFWgtruHbr2HnLTLw8F9HDKkz5IUvF8zsU,656
|
|
@@ -13,32 +13,32 @@ commitizen/cli.py,sha256=pr7q8oKPScuL2Wc21L7jWZ2assGX-zpKiL9TJt8Ox9o,28036
|
|
|
13
13
|
commitizen/cmd.py,sha256=Qmebgl6cjS6c-x83N0OwG1tXH636bFPn074Ef-3RGAY,1306
|
|
14
14
|
commitizen/commands/__init__.py,sha256=gdk5ehql39YCuUZ03HdXWAJhRUwTe0J4A74S1K5K7Fo,420
|
|
15
15
|
commitizen/commands/bump.py,sha256=qx9w_X38jpMoZ3rWpujLGhfSnfprn4aYqunPwBN6n0U,16672
|
|
16
|
-
commitizen/commands/changelog.py,sha256=
|
|
16
|
+
commitizen/commands/changelog.py,sha256=oGt9N3VNcw6p0rezd4DbxUj2UmnSFYKjHdTA4titpwg,10544
|
|
17
17
|
commitizen/commands/check.py,sha256=F5ufrRrUecr6U-vsYyfaWkHtsFb7L3nd0-oN5c5GT1M,5506
|
|
18
|
-
commitizen/commands/commit.py,sha256=
|
|
18
|
+
commitizen/commands/commit.py,sha256=2HaUnpVe0U6sJK_oTb56ilfRRC-a7f29sqCxchBG0E0,6474
|
|
19
19
|
commitizen/commands/example.py,sha256=-pWBjDA2I-dtAHickbkeis08xnFSuBxM2YLBm_Hm0sY,389
|
|
20
20
|
commitizen/commands/info.py,sha256=P009ymylWiwr02p-swky7v1QXZTeOf2wT7jdHkZXAgg,375
|
|
21
|
-
commitizen/commands/init.py,sha256=
|
|
21
|
+
commitizen/commands/init.py,sha256=RwMfW8sdEI_RmwYDJ0Tx262qxvgENCCICNhOhTFVaTY,12335
|
|
22
22
|
commitizen/commands/list_cz.py,sha256=0eCGpRLn5v7XLNWiMkA14QN260fyR6gzoDvAM2mq-IM,349
|
|
23
23
|
commitizen/commands/schema.py,sha256=66m_xCjAsUS7_a2Q_dx-CCiHJ6UXG8RJVUeLO_pl2gU,366
|
|
24
24
|
commitizen/commands/version.py,sha256=X_Hrjb_48hBGTN3J8dD3_kveLvaPBlnQarw96Koag20,2868
|
|
25
|
-
commitizen/config/__init__.py,sha256=
|
|
26
|
-
commitizen/config/base_config.py,sha256=
|
|
25
|
+
commitizen/config/__init__.py,sha256=lB7mj_wEuxHj369D65w9ejYWnG3X6EbR4UwRrY0nYmE,1781
|
|
26
|
+
commitizen/config/base_config.py,sha256=mWb39DMd5J7yn2Nj-6ZFbUZeR4Tapr06KPvyMXRenhE,1659
|
|
27
27
|
commitizen/config/factory.py,sha256=-6TcsKLGVJ1Tw1nkRVv5aAfS4JvxY6V2QLirNL8Ly8M,839
|
|
28
|
-
commitizen/config/json_config.py,sha256=
|
|
29
|
-
commitizen/config/toml_config.py,sha256=
|
|
30
|
-
commitizen/config/yaml_config.py,sha256=
|
|
28
|
+
commitizen/config/json_config.py,sha256=fyMFxZIvQcKNSJUa56kus9vhXQKoA5MTWl9FZY1KyvU,1948
|
|
29
|
+
commitizen/config/toml_config.py,sha256=T3mMWIJywe0cZfCgfvF7AUkDBOGjC9J11V79dKHvulE,2375
|
|
30
|
+
commitizen/config/yaml_config.py,sha256=bGdUOl3L4xSVpvgyKMZxmIiQU2Wa_BN3Ikog_WeUpQc,2042
|
|
31
31
|
commitizen/cz/__init__.py,sha256=45-VfzHalISUDcpkrfGLVvBRoTdAtdTf3-CmuOqBaus,1311
|
|
32
32
|
commitizen/cz/base.py,sha256=w2VeKICv59VBgOxpRB8VaXN5LoJRop_P6mDDkrTsQe0,5540
|
|
33
33
|
commitizen/cz/conventional_commits/__init__.py,sha256=GZHCs25rv1p1dp4BNczL5FU_pPdENazF8yso_Ca2sQQ,70
|
|
34
|
-
commitizen/cz/conventional_commits/conventional_commits.py,sha256=
|
|
34
|
+
commitizen/cz/conventional_commits/conventional_commits.py,sha256=veRe4vVyprl_lLz8eL7cPRLSwIMVAO7NhadUPpuXjjY,7434
|
|
35
35
|
commitizen/cz/conventional_commits/conventional_commits_info.txt,sha256=FqhncEblZC1IYYW7MXhOkA_YOvgO8a1F8-kWSNHVOi8,1285
|
|
36
36
|
commitizen/cz/customize/__init__.py,sha256=YuZc8zjgiZ3qxCuZ_T81okOzhzhenKzNr9G0d7WBzV0,56
|
|
37
37
|
commitizen/cz/customize/customize.py,sha256=iJ5yQSPtKuhz9uf6jaaDi5BG2xBwcg27014ZpNW3sAo,2480
|
|
38
38
|
commitizen/cz/customize/customize_info.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
39
39
|
commitizen/cz/exceptions.py,sha256=6d4hEBKL0fPDXjyi5hK1gOv3vyMS0Eyq8BTvO93V924,80
|
|
40
40
|
commitizen/cz/jira/__init__.py,sha256=9zcifxnhAjTuPiWXLmh_QhC2Lb7hwyxgtE90QhPP7eg,57
|
|
41
|
-
commitizen/cz/jira/jira.py,sha256=
|
|
41
|
+
commitizen/cz/jira/jira.py,sha256=P0ScjzrfoMSifSVQqXqodWb5qu-qGoHYVZY7gBmf0Ps,2598
|
|
42
42
|
commitizen/cz/jira/jira_info.txt,sha256=GVLlYhUvWJX-8ej_vVrR-lmcUqOBnb5XzkVQOZOzTqA,1940
|
|
43
43
|
commitizen/cz/utils.py,sha256=lx1xuIl0ZjZtcsvMKBLCz3JfKACwFmgb3F1WoRBRU6o,833
|
|
44
44
|
commitizen/defaults.py,sha256=MbLCKF4BP-WcxTj74DeKIf4ptj83ji_A3_y0FbkbsBM,5566
|
|
@@ -50,23 +50,23 @@ commitizen/out.py,sha256=_vsBdYWdKYdbODCAq7C6ox77CaREfA4uCOL3ntNKJto,982
|
|
|
50
50
|
commitizen/project_info.py,sha256=bCH8ERqY9RlTYecFyUvZlVZG_fvTCjNJAfVT3P4mRrg,1253
|
|
51
51
|
commitizen/providers/__init__.py,sha256=u4A7EaE_FlgzmdXgaIznaRLkDScQRWRfPx9tzM9KuEs,1740
|
|
52
52
|
commitizen/providers/base_provider.py,sha256=axwTFlFQ0pqEursER7vWRg6El4ZGjF9Eh6YTk9NIPe0,2386
|
|
53
|
-
commitizen/providers/cargo_provider.py,sha256=
|
|
53
|
+
commitizen/providers/cargo_provider.py,sha256=SgHOwQMwb-tTTvY_bL1Fmr-op7zWNjVHjpGmDkHuwgo,3758
|
|
54
54
|
commitizen/providers/commitizen_provider.py,sha256=6in8_9pDA5mqIa24DKki4E9BH-EGLrXtAjR4nNzyM-0,539
|
|
55
55
|
commitizen/providers/composer_provider.py,sha256=ghBxspG_Be_O4g7QjuPFkzFVQSsOPDJI3kT6BVDqpik,231
|
|
56
|
-
commitizen/providers/npm_provider.py,sha256=
|
|
56
|
+
commitizen/providers/npm_provider.py,sha256=VAxINWhydSBqY6wkYyD3kjdOiJaT7W6GGJkDOKSLbvg,2673
|
|
57
57
|
commitizen/providers/pep621_provider.py,sha256=PS0IVJ-AE5w_QjANpx3J_D_IFmIJPQbvuQO2uldZy4U,214
|
|
58
58
|
commitizen/providers/poetry_provider.py,sha256=_udptKdIvTPLvIj2NM12hSUyiSThX4RrTHcIq5kqt9E,590
|
|
59
59
|
commitizen/providers/scm_provider.py,sha256=7c4rGqW99lVwyqZApRgHc-Upm-69mqd8uZ_s73LqGVE,879
|
|
60
60
|
commitizen/providers/uv_provider.py,sha256=MM0Ki2jO7ZvgP7g0TBI_BU86u6DTmUZAz3-f5mRovHM,1288
|
|
61
61
|
commitizen/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
62
62
|
commitizen/question.py,sha256=J6_fzWghr_irzpPUU5JUsIBgDHp4Adryx8XmZAo4Zj4,624
|
|
63
|
-
commitizen/tags.py,sha256=
|
|
63
|
+
commitizen/tags.py,sha256=2wdMHfBoriOz0dwrv7o2mbRDy9eaiFyp1M9aBrzyeAQ,10191
|
|
64
64
|
commitizen/templates/CHANGELOG.adoc.j2,sha256=LIJZ1vBl2ZFq0hbORMjWi0DJtuYC7S3t8RBuVJ6XZsY,403
|
|
65
65
|
commitizen/templates/CHANGELOG.md.j2,sha256=MggRrhbL3EabwsH8v0oFMM8G296ATBzePaqumBvW2kc,405
|
|
66
66
|
commitizen/templates/CHANGELOG.rst.j2,sha256=XHh4a7S83Z5Vrd_0UaLDA1Bb7A82Px4eHcbHsZGKYF8,515
|
|
67
67
|
commitizen/templates/CHANGELOG.textile.j2,sha256=8JxCcDdgQUmNPxXFEv5IpbP_vcfvYCo5CSicNCZmFCY,404
|
|
68
68
|
commitizen/version_schemes.py,sha256=NDyxMzJGK1NKkTgtJ4BNw_NgKxJhvK0EWWVhfqzzwHI,13460
|
|
69
|
-
commitizen-4.13.
|
|
70
|
-
commitizen-4.13.
|
|
71
|
-
commitizen-4.13.
|
|
72
|
-
commitizen-4.13.
|
|
69
|
+
commitizen-4.13.2.dist-info/WHEEL,sha256=fAguSjoiATBe7TNBkJwOjyL1Tt4wwiaQGtNtjRPNMQA,80
|
|
70
|
+
commitizen-4.13.2.dist-info/entry_points.txt,sha256=EpbOUAABRQCFhf2HFcmrJZLGsbB_MSJ-tFua-NxUCxE,1085
|
|
71
|
+
commitizen-4.13.2.dist-info/METADATA,sha256=2IFK7muxWEZFWN0yhBlqlzZ7xSjyOVqrRnZusTvFS7k,13532
|
|
72
|
+
commitizen-4.13.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|