commitizen 3.30.1__tar.gz → 3.31.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-3.30.1 → commitizen-3.31.0}/PKG-INFO +1 -1
- commitizen-3.31.0/commitizen/__version__.py +1 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/cli.py +6 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/commands/commit.py +7 -6
- {commitizen-3.30.1 → commitizen-3.31.0}/pyproject.toml +2 -2
- commitizen-3.30.1/commitizen/__version__.py +0 -1
- {commitizen-3.30.1 → commitizen-3.31.0}/LICENSE +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/__init__.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/__main__.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/bump.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/changelog.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/changelog_formats/__init__.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/changelog_formats/asciidoc.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/changelog_formats/base.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/changelog_formats/markdown.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/changelog_formats/restructuredtext.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/changelog_formats/textile.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/cmd.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/commands/__init__.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/commands/bump.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/commands/changelog.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/commands/check.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/commands/example.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/commands/info.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/commands/init.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/commands/list_cz.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/commands/schema.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/commands/version.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/config/__init__.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/config/base_config.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/config/json_config.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/config/toml_config.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/config/yaml_config.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/cz/__init__.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/cz/base.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/cz/conventional_commits/__init__.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/cz/conventional_commits/conventional_commits.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/cz/conventional_commits/conventional_commits_info.txt +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/cz/customize/__init__.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/cz/customize/customize.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/cz/customize/customize_info.txt +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/cz/exceptions.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/cz/jira/__init__.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/cz/jira/jira.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/cz/jira/jira_info.txt +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/cz/utils.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/defaults.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/exceptions.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/factory.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/git.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/hooks.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/out.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/providers/__init__.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/providers/base_provider.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/providers/cargo_provider.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/providers/commitizen_provider.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/providers/composer_provider.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/providers/npm_provider.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/providers/pep621_provider.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/providers/poetry_provider.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/providers/scm_provider.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/py.typed +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/templates/CHANGELOG.adoc.j2 +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/templates/CHANGELOG.md.j2 +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/templates/CHANGELOG.rst.j2 +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/templates/CHANGELOG.textile.j2 +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/commitizen/version_schemes.py +0 -0
- {commitizen-3.30.1 → commitizen-3.31.0}/docs/README.md +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "3.31.0"
|
|
@@ -168,6 +168,12 @@ data = {
|
|
|
168
168
|
"default": 0,
|
|
169
169
|
"help": "length limit of the commit message; 0 for no limit",
|
|
170
170
|
},
|
|
171
|
+
{
|
|
172
|
+
"name": ["--"],
|
|
173
|
+
"action": "store_true",
|
|
174
|
+
"dest": "double_dash",
|
|
175
|
+
"help": "Positional arguments separator (recommended)",
|
|
176
|
+
},
|
|
171
177
|
],
|
|
172
178
|
},
|
|
173
179
|
{
|
|
@@ -134,17 +134,18 @@ class Commit:
|
|
|
134
134
|
if dry_run:
|
|
135
135
|
raise DryRunExit()
|
|
136
136
|
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
137
|
+
always_signoff: bool = self.config.settings["always_signoff"]
|
|
138
|
+
signoff: bool = self.arguments.get("signoff")
|
|
139
|
+
|
|
140
|
+
extra_args = self.arguments.get("extra_cli_args", "")
|
|
140
141
|
|
|
141
142
|
if signoff:
|
|
142
143
|
out.warn(
|
|
143
144
|
"signoff mechanic is deprecated, please use `cz commit -- -s` instead."
|
|
144
145
|
)
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
extra_args =
|
|
146
|
+
|
|
147
|
+
if always_signoff or signoff:
|
|
148
|
+
extra_args = f"{extra_args} -s".strip()
|
|
148
149
|
|
|
149
150
|
c = git.commit(m, args=extra_args)
|
|
150
151
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
[tool.commitizen]
|
|
2
|
-
version = "3.
|
|
2
|
+
version = "3.31.0"
|
|
3
3
|
tag_format = "v$version"
|
|
4
4
|
version_files = [
|
|
5
5
|
"pyproject.toml:version",
|
|
@@ -9,7 +9,7 @@ version_files = [
|
|
|
9
9
|
|
|
10
10
|
[tool.poetry]
|
|
11
11
|
name = "commitizen"
|
|
12
|
-
version = "3.
|
|
12
|
+
version = "3.31.0"
|
|
13
13
|
description = "Python commitizen client tool"
|
|
14
14
|
authors = ["Santiago Fraire <santiwilly@gmail.com>"]
|
|
15
15
|
license = "MIT"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "3.30.1"
|
|
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-3.30.1 → commitizen-3.31.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
|