File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -32,8 +32,8 @@ Old: ``from cyclonedx.model import Tool``
3232
3333New: ``from cyclonedx.model.tool import Tool ``
3434
35- Altering Metadata Tools
36- -----------------------
35+ Alter Metadata Tools
36+ --------------------
3737
3838Property :attr: `cyclonedx.model.bom.BomMetaData.tools ` is an instance of :class: `cyclonedx.model.tool.ToolsRepository `, now.
3939Therefore, the process of adding new tools was changed.
@@ -42,8 +42,8 @@ Old: ``my_bom.metadata.tools.add(my_tool)``
4242
4343New: ``my_bom.metadata.tools.tools.add(my_tool) ``
4444
45- Altering Vulnerability Tools
46- ----------------------------
45+ Alter Vulnerability Tools
46+ -------------------------
4747
4848Property :attr: `cyclonedx.model.vulnerability.Vulnerability.tools ` is an instance of :class: `cyclonedx.model.tool.ToolsRepository `, now.
4949Therefore, the process of adding new tools was changed.
@@ -52,8 +52,8 @@ Old: ``my_vulnerability.tools.add(my_tool)``
5252
5353New: ``my_vulnerability.tools.tools.add(my_tool) ``
5454
55- Setting LicenseExpression Acknowledgement
56- -----------------------------------------
55+ Set LicenseExpression Acknowledgement
56+ -------------------------------------
5757
5858:class: `cyclonedx.model.license.LicenseExpression() ` no longer accepts optional arguments in a positional way, but in a key-word way.
5959
You can’t perform that action at this time.
0 commit comments