diff --git a/CHANGELOG.md b/CHANGELOG.md index bf6235ed..71d97fbe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,25 @@ +## v4.5.1 (2024-09-18) + +### Documentation + +* docs: fix typo + +Signed-off-by: Jan Kowalleck <jan.kowalleck@gmail.com> ([`9f9fa9e`](https://github.com/CycloneDX/cyclonedx-python/commit/9f9fa9e795b2aea847ae7639b018fd6c32d7e38c)) + +### Fix + +* fix: assert copyright headers (#787) + +utilizes flake8 plugin +<https://pypi.org/project/flake8-copyright-validator/> to assert the +correct headers + +Signed-off-by: Jan Kowalleck <jan.kowalleck@gmail.com> ([`dddcb5d`](https://github.com/CycloneDX/cyclonedx-python/commit/dddcb5dc6529e60c82dcfd756a0a8b31ae76e9bf)) + + ## v4.5.0 (2024-06-10) ### Chore diff --git a/cyclonedx_py/__init__.py b/cyclonedx_py/__init__.py index afbb430a..128bd748 100644 --- a/cyclonedx_py/__init__.py +++ b/cyclonedx_py/__init__.py @@ -17,7 +17,7 @@ # !! version is managed by `semantic_release` # do not use typing here, or else `semantic_release` might have issues finding the variable -__version__ = "4.5.0" # noqa:Q000 +__version__ = "4.5.1" # noqa:Q000 # There is no stable/public API. # However, you might call the stable CLI instead, like so: diff --git a/docs/conf.py b/docs/conf.py index e85aa3c9..dca626ed 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -22,7 +22,7 @@ # The full version, including alpha/beta/rc tags # !! version is managed by semantic_release -release = "4.5.0" +release = "4.5.1" # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 8b2d9b30..1be6328a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] # keep in sync with `cyclonedx_py/_internal/utils/cdx.py` name = "cyclonedx-bom" -version = "4.5.0" +version = "4.5.1" description = "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments" authors = [ "Jan Kowalleck ",