File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ class BumpArgs(Settings, total=False):
4747 check_consistency : bool
4848 devrelease : int | None
4949 dry_run : bool
50- file_name : str
50+ file_name : str | None
5151 files_only : bool | None
5252 version_files_only : bool | None
5353 get_next : bool # TODO: maybe rename to `next_version_to_stdout`
Original file line number Diff line number Diff line change @@ -31,17 +31,17 @@ class ChangelogArgs(TypedDict, total=False):
3131 change_type_order : list [str ]
3232 current_version : str
3333 dry_run : bool
34- file_name : str
34+ file_name : str | None
3535 incremental : bool
3636 merge_prerelease : bool
3737 rev_range : str
38- start_rev : str
39- tag_format : str
38+ start_rev : str | None
39+ tag_format : str | None
4040 unreleased_version : str | None
41- version_scheme : str
42- template : str
43- extras : dict [str , Any ]
44- export_template : str
41+ version_scheme : str | None
42+ template : str | None
43+ extras : dict [str , Any ] | None
44+ export_template : str | None
4545 during_version_bump : bool | None
4646 allow_no_commit : bool | None # Internal-only when invoked by bump.
4747
Original file line number Diff line number Diff line change @@ -21,8 +21,8 @@ class CheckArgs(TypedDict, total=False):
2121 commit_msg : str
2222 rev_range : str
2323 allow_abort : bool
24- message_length_limit : int
25- allowed_prefixes : list [str ]
24+ message_length_limit : int | None
25+ allowed_prefixes : list [str ] | None
2626 message : str
2727 use_default_range : bool
2828
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ class CommitArgs(TypedDict, total=False):
3535 dry_run : bool
3636 edit : bool
3737 extra_cli_args : list [str ]
38- message_length_limit : int
38+ message_length_limit : int | None
3939 no_retry : bool
4040 signoff : bool
4141 write_message_to_file : Path | None
You can’t perform that action at this time.
0 commit comments