diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a424e98..17a21add 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ +## v5.1.0 (2024-10-23) + +### Feature + +* feat: add Python 3.13 support (#818) + +Signed-off-by: Jan Kowalleck <jan.kowalleck@gmail.com> ([`f4eb79e`](https://github.com/CycloneDX/cyclonedx-python/commit/f4eb79e50bd5a1462c47ad259d632937d951bf96)) + + ## v5.0.0 (2024-10-15) ### Breaking diff --git a/cyclonedx_py/__init__.py b/cyclonedx_py/__init__.py index fc5160d1..f54a9419 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__ = "5.0.0" # noqa:Q000 +__version__ = "5.1.0" # 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 51211aa6..3dd6fb88 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 = "5.0.0" +release = "5.1.0" # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 72677854..fc9ad4cc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "cyclonedx-bom" -version = "5.0.0" +version = "5.1.0" description = "CycloneDX Software Bill of Materials (SBOM) generator for Python projects and environments" authors = [ "Jan Kowalleck ",