Skip to content

m ci bump_version

Prompt user for the next valid semantic version.

Source code in m/cli/commands/ci/bump_version.py
class Arguments(BaseModel):
    """Prompt user for the next valid semantic version."""

    type: str = ArgProxy(
        '--type',
        required=True,
        choices=['release', 'hotfix'],
        help='verification type',
    )
    version: str = Arg(
        help='version to bump',
        positional=True,
        required=True,
    )

Options

--type

  • choices: release, hotfix

verification type

Positional arguments

version

version to bump