commitizen 4.7.2__tar.gz → 4.8.0__tar.gz
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-4.7.2 → commitizen-4.8.0}/PKG-INFO +1 -1
- commitizen-4.8.0/commitizen/__version__.py +1 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/cli.py +4 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/pyproject.toml +2 -2
- commitizen-4.7.2/commitizen/__version__.py +0 -1
- {commitizen-4.7.2 → commitizen-4.8.0}/LICENSE +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/__init__.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/__main__.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/bump.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/changelog.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/changelog_formats/__init__.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/changelog_formats/asciidoc.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/changelog_formats/base.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/changelog_formats/markdown.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/changelog_formats/restructuredtext.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/changelog_formats/textile.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/cmd.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/commands/__init__.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/commands/bump.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/commands/changelog.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/commands/check.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/commands/commit.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/commands/example.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/commands/info.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/commands/init.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/commands/list_cz.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/commands/schema.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/commands/version.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/config/__init__.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/config/base_config.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/config/json_config.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/config/toml_config.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/config/yaml_config.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/cz/__init__.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/cz/base.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/cz/conventional_commits/__init__.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/cz/conventional_commits/conventional_commits.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/cz/conventional_commits/conventional_commits_info.txt +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/cz/customize/__init__.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/cz/customize/customize.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/cz/customize/customize_info.txt +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/cz/exceptions.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/cz/jira/__init__.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/cz/jira/jira.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/cz/jira/jira_info.txt +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/cz/utils.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/defaults.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/exceptions.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/factory.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/git.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/hooks.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/out.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/providers/__init__.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/providers/base_provider.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/providers/cargo_provider.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/providers/commitizen_provider.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/providers/composer_provider.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/providers/npm_provider.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/providers/pep621_provider.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/providers/poetry_provider.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/providers/scm_provider.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/providers/uv_provider.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/py.typed +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/tags.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/templates/CHANGELOG.adoc.j2 +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/templates/CHANGELOG.md.j2 +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/templates/CHANGELOG.rst.j2 +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/templates/CHANGELOG.textile.j2 +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/commitizen/version_schemes.py +0 -0
- {commitizen-4.7.2 → commitizen-4.8.0}/docs/README.md +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "4.8.0"
|
|
@@ -450,6 +450,10 @@ data = {
|
|
|
450
450
|
"help": "Export the changelog template into this file instead of rendering it",
|
|
451
451
|
},
|
|
452
452
|
*deepcopy(tpl_arguments),
|
|
453
|
+
{
|
|
454
|
+
"name": "--tag-format",
|
|
455
|
+
"help": "The format of the tag, wrap around simple quotes",
|
|
456
|
+
},
|
|
453
457
|
],
|
|
454
458
|
},
|
|
455
459
|
{
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "commitizen"
|
|
3
|
-
version = "4.
|
|
3
|
+
version = "4.8.0"
|
|
4
4
|
description = "Python commitizen client tool"
|
|
5
5
|
authors = [{ name = "Santiago Fraire", email = "santiwilly@gmail.com" }]
|
|
6
6
|
maintainers = [
|
|
@@ -88,7 +88,7 @@ build-backend = "poetry.core.masonry.api"
|
|
|
88
88
|
|
|
89
89
|
|
|
90
90
|
[tool.commitizen]
|
|
91
|
-
version = "4.
|
|
91
|
+
version = "4.8.0"
|
|
92
92
|
tag_format = "v$version"
|
|
93
93
|
version_files = [
|
|
94
94
|
"pyproject.toml:version",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "4.7.2"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{commitizen-4.7.2 → commitizen-4.8.0}/commitizen/cz/conventional_commits/conventional_commits.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|