Skip to content

m ci release_setup

Update the config and changelog files.

Source code in m/cli/commands/ci/release_setup.py
class Arguments(BaseModel):
    """Update the config and changelog files."""

    changelog: str = Arg(
        default='CHANGELOG.md',
        help='CHANGELOG filename',
    )
    m_dir: str = Arg(
        help='m project directory',
        positional=True,
        required=True,
    )
    new_ver: str = Arg(
        help='the new version',
        positional=True,
        required=True,
    )

Options

--changelog

  • default: 'CHANGELOG.md'

CHANGELOG filename

Positional arguments

m_dir

m project directory

new_ver

the new version