Skip to content

Commit d8c58b3

Browse files
committed
docs: migrate to v8.0.0
Signed-off-by: Jan Kowalleck <[email protected]>
1 parent 87404f9 commit d8c58b3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/upgrading.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ Old: ``from cyclonedx.model import Tool``
3232

3333
New: ``from cyclonedx.model.tool import Tool``
3434

35-
Altering Metadata Tools
36-
-----------------------
35+
Alter Metadata Tools
36+
--------------------
3737

3838
Property :attr:`cyclonedx.model.bom.BomMetaData.tools` is an instance of :class:`cyclonedx.model.tool.ToolsRepository`, now.
3939
Therefore, the process of adding new tools was changed.
@@ -42,8 +42,8 @@ Old: ``my_bom.metadata.tools.add(my_tool)``
4242

4343
New: ``my_bom.metadata.tools.tools.add(my_tool)``
4444

45-
Altering Vulnerability Tools
46-
----------------------------
45+
Alter Vulnerability Tools
46+
-------------------------
4747

4848
Property :attr:`cyclonedx.model.vulnerability.Vulnerability.tools` is an instance of :class:`cyclonedx.model.tool.ToolsRepository`, now.
4949
Therefore, the process of adding new tools was changed.
@@ -52,8 +52,8 @@ Old: ``my_vulnerability.tools.add(my_tool)``
5252

5353
New: ``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

0 commit comments

Comments
 (0)