commitizen 3.26.1__tar.gz → 3.26.2__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.26.1 → commitizen-3.26.2}/PKG-INFO +1 -1
- commitizen-3.26.2/commitizen/__version__.py +1 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/changelog_formats/base.py +2 -1
- {commitizen-3.26.1 → commitizen-3.26.2}/pyproject.toml +2 -2
- commitizen-3.26.1/commitizen/__version__.py +0 -1
- {commitizen-3.26.1 → commitizen-3.26.2}/LICENSE +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/__init__.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/__main__.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/bump.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/changelog.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/changelog_formats/__init__.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/changelog_formats/asciidoc.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/changelog_formats/markdown.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/changelog_formats/restructuredtext.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/changelog_formats/textile.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/cli.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/cmd.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/commands/__init__.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/commands/bump.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/commands/changelog.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/commands/check.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/commands/commit.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/commands/example.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/commands/info.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/commands/init.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/commands/list_cz.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/commands/schema.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/commands/version.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/config/__init__.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/config/base_config.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/config/json_config.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/config/toml_config.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/config/yaml_config.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/cz/__init__.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/cz/base.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/cz/conventional_commits/__init__.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/cz/conventional_commits/conventional_commits.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/cz/conventional_commits/conventional_commits_info.txt +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/cz/customize/__init__.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/cz/customize/customize.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/cz/customize/customize_info.txt +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/cz/exceptions.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/cz/jira/__init__.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/cz/jira/jira.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/cz/jira/jira_info.txt +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/cz/utils.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/defaults.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/exceptions.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/factory.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/git.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/hooks.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/out.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/providers/__init__.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/providers/base_provider.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/providers/cargo_provider.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/providers/commitizen_provider.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/providers/composer_provider.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/providers/npm_provider.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/providers/pep621_provider.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/providers/poetry_provider.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/providers/scm_provider.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/py.typed +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/templates/CHANGELOG.adoc.j2 +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/templates/CHANGELOG.md.j2 +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/templates/CHANGELOG.rst.j2 +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/templates/CHANGELOG.textile.j2 +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/commitizen/version_schemes.py +0 -0
- {commitizen-3.26.1 → commitizen-3.26.2}/docs/README.md +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "3.26.2"
|
|
@@ -24,6 +24,7 @@ class BaseFormat(ChangelogFormat, metaclass=ABCMeta):
|
|
|
24
24
|
# Constructor needs to be redefined because `Protocol` prevent instantiation by default
|
|
25
25
|
# See: https://bugs.python.org/issue44807
|
|
26
26
|
self.config = config
|
|
27
|
+
self.encoding = self.config.settings["encoding"]
|
|
27
28
|
|
|
28
29
|
@property
|
|
29
30
|
def version_parser(self) -> Pattern:
|
|
@@ -33,7 +34,7 @@ class BaseFormat(ChangelogFormat, metaclass=ABCMeta):
|
|
|
33
34
|
if not os.path.isfile(filepath):
|
|
34
35
|
return Metadata()
|
|
35
36
|
|
|
36
|
-
with open(filepath) as changelog_file:
|
|
37
|
+
with open(filepath, encoding=self.encoding) as changelog_file:
|
|
37
38
|
return self.get_metadata_from_file(changelog_file)
|
|
38
39
|
|
|
39
40
|
def get_metadata_from_file(self, file: IO[Any]) -> Metadata:
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
[tool.commitizen]
|
|
2
|
-
version = "3.26.
|
|
2
|
+
version = "3.26.2"
|
|
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.26.
|
|
12
|
+
version = "3.26.2"
|
|
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.26.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
|
|
File without changes
|
{commitizen-3.26.1 → commitizen-3.26.2}/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
|