Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion commitizen/commands/bump.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class BumpArgs(Settings, total=False):
check_consistency: bool
devrelease: int | None
dry_run: bool
file_name: str
file_name: str | None
files_only: bool | None
version_files_only: bool | None
get_next: bool # TODO: maybe rename to `next_version_to_stdout`
Expand Down
14 changes: 7 additions & 7 deletions commitizen/commands/changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,17 @@ class ChangelogArgs(TypedDict, total=False):
change_type_order: list[str]
current_version: str
dry_run: bool
file_name: str
file_name: str | None
incremental: bool
merge_prerelease: bool
rev_range: str
start_rev: str
tag_format: str
start_rev: str | None
tag_format: str | None
unreleased_version: str | None
version_scheme: str
template: str
extras: dict[str, Any]
export_template: str
version_scheme: str | None
template: str | None
extras: dict[str, Any] | None
export_template: str | None
during_version_bump: bool | None
allow_no_commit: bool | None # Internal-only when invoked by bump.

Expand Down
4 changes: 2 additions & 2 deletions commitizen/commands/check.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ class CheckArgs(TypedDict, total=False):
commit_msg: str
rev_range: str
allow_abort: bool
message_length_limit: int
allowed_prefixes: list[str]
message_length_limit: int | None
allowed_prefixes: list[str] | None
message: str
use_default_range: bool

Expand Down
2 changes: 1 addition & 1 deletion commitizen/commands/commit.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class CommitArgs(TypedDict, total=False):
dry_run: bool
edit: bool
extra_cli_args: list[str]
message_length_limit: int
message_length_limit: int | None
no_retry: bool
signoff: bool
write_message_to_file: Path | None
Expand Down
Loading