From dfd0638601552b7db6a7f5fe4a6a4b7b4764f845 Mon Sep 17 00:00:00 2001 From: tdruez Date: Mon, 12 Jan 2026 19:51:22 +0800 Subject: [PATCH] chore: bump version to 5.6.0 Signed-off-by: tdruez --- CHANGELOG.rst | 23 ++++++++++++++++++++++- dejacode/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 24 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 71ca6fa8..6f3c8134 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,7 +1,28 @@ Release notes ============= -### Version 5.6.0-dev +### Version 5.6.0 + +- feat: import vulnerability data from ScanCode.io + https://github.com/aboutcode-org/dejacode/issues/448 + +- feat: ability to assign and manage vulnerabilities on products + https://github.com/aboutcode-org/dejacode/issues/439 + +- feat: add package_content PurlDB field on Package model + https://github.com/aboutcode-org/dejacode/issues/434 + +- fix: exclude qualifiers and subpath for PURL comparison in get_purldb_entries + https://github.com/aboutcode-org/dejacode/issues/453 + +- fix: update the readthedocs.yml config to fix the build + https://github.com/aboutcode-org/dejacode/issues/447 + +- chore: upgrade Django and related libraries to latest version + https://github.com/aboutcode-org/dejacode/issues/451 + +- chore: upgrade altcha and django_altcha to latest versions + https://github.com/aboutcode-org/dejacode/issues/450 ### Version 5.5.0 diff --git a/dejacode/__init__.py b/dejacode/__init__.py index 6d5bc6a4..2c8a0f28 100644 --- a/dejacode/__init__.py +++ b/dejacode/__init__.py @@ -14,7 +14,7 @@ import git -VERSION = "5.6.0-dev" +VERSION = "5.6.0" PROJECT_DIR = Path(__file__).resolve().parent ROOT_DIR = PROJECT_DIR.parent diff --git a/pyproject.toml b/pyproject.toml index 8dc43ba1..eee903dd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "dejacode" -version = "5.6.0-dev" +version = "5.6.0" description = "Automate open source license compliance and ensure supply chain integrity" readme = "README.rst" requires-python = ">=3.13,<3.14"