mirror of
https://github.com/TECHNOFAB11/bumpver.git
synced 2025-12-16 16:23:51 +01:00
documentation for --commit-message
This commit is contained in:
parent
0e26efd0e7
commit
3fb74f9789
2 changed files with 31 additions and 8 deletions
|
|
@ -197,12 +197,12 @@ env_option = click.option(
|
|||
|
||||
def version_options(function: typ.Callable) -> typ.Callable:
|
||||
decorators = [
|
||||
click.option("--major", is_flag=True, default=False, help="Increment major component."),
|
||||
click.option("--major", is_flag=True, default=False, help="Increment MAJOR component."),
|
||||
click.option(
|
||||
"-m", "--minor", is_flag=True, default=False, help="Increment minor component."
|
||||
"-m", "--minor", is_flag=True, default=False, help="Increment MINOR component."
|
||||
),
|
||||
click.option(
|
||||
"-p", "--patch", is_flag=True, default=False, help="Increment patch component."
|
||||
"-p", "--patch", is_flag=True, default=False, help="Increment PATCH component."
|
||||
),
|
||||
click.option(
|
||||
"-t",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue