diff --git a/CHANGELOG.md b/CHANGELOG.md index e7891228..5300ed00 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,33 @@ +## v7.5.0 (2024-07-04) + +### Feature + +* feat: add workaround property for v1.5 and v1.6 (#642) + +Property `workaround` was missing from the vulnerability model. It was +added in spec v1.5 and was marked as TODO before. + +This is my first contribution on this project so if I done something +wrong, just say me :smiley: + +Signed-off-by: Louis Maillard <louis.maillard@savoirfairelinux.com> +Signed-off-by: Louis Maillard <louis.maillard@protonmail.com> +Co-authored-by: Louis Maillard <louis.maillard@savoirfairelinux.com> ([`b5ebcf8`](https://github.com/CycloneDX/cyclonedx-python-lib/commit/b5ebcf8104faf57030cbc5d8190c78524ab86431)) + +### Style + +* style: model args - one per line (#643) + +this should make future PR reviews easier, since adding new args in the +middle will not cause complete code blocks to change, but is just a new +line ... + +Signed-off-by: Jan Kowalleck <jan.kowalleck@gmail.com> ([`5b74b0f`](https://github.com/CycloneDX/cyclonedx-python-lib/commit/5b74b0f3f29e6f1a14e1e97294fcc8a0a05f3245)) + + ## v7.4.1 (2024-06-12) ### Chore diff --git a/cyclonedx/__init__.py b/cyclonedx/__init__.py index 05a25336..ef6b7a14 100644 --- a/cyclonedx/__init__.py +++ b/cyclonedx/__init__.py @@ -20,4 +20,4 @@ # !! version is managed by semantic_release # do not use typing here, or else `semantic_release` might have issues finding the variable -__version__ = "7.4.1" # noqa:Q000 +__version__ = "7.5.0" # noqa:Q000 diff --git a/docs/conf.py b/docs/conf.py index 648194bc..35a9009d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -20,7 +20,7 @@ # The full version, including alpha/beta/rc tags # !! version is managed by semantic_release -release = '7.4.1' +release = '7.5.0' # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index a5538f9a..4b0646f4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "cyclonedx-python-lib" # !! version is managed by semantic_release -version = "7.4.1" +version = "7.5.0" description = "Python library for CycloneDX" authors = [ "Paul Horton ",