Skip to content
Merged
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
4 changes: 2 additions & 2 deletions cyclonedx_py/_internal/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def make_argument_parser(cls, sco: ArgumentParser, **kwargs: Any) -> ArgumentPar
dest='spec_version',
choices=SchemaVersion,
type=SchemaVersion.from_version,
default=SchemaVersion.V1_5.to_version())
default=SchemaVersion.V1_6.to_version())
op.add_argument('--sv', '--spec-version',
metavar='<version>',
help='Which version of CycloneDX to use.'
Expand All @@ -83,7 +83,7 @@ def make_argument_parser(cls, sco: ArgumentParser, **kwargs: Any) -> ArgumentPar
dest='spec_version',
choices=SchemaVersion,
type=SchemaVersion.from_version,
default=SchemaVersion.V1_5.to_version())
default=SchemaVersion.V1_6.to_version())
op.add_argument('--output-reproducible',
help='Whether to go the extra mile and make the output reproducible.\n'
'This might result in loss of time- and random-based values.',
Expand Down