From c6c8aab66c65529edf044dfa72ffe3d8c9939dd3 Mon Sep 17 00:00:00 2001 From: tdruez Date: Thu, 16 Apr 2026 19:08:01 +0400 Subject: [PATCH] chore: bump version to 5.7.1 for release Signed-off-by: tdruez --- CHANGELOG.rst | 17 +++++++++++++++++ dejacode/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7cf4a441..519915f6 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,23 @@ Release notes ============= +### Version 5.7.1 + +- feat: Product compliance tab + https://github.com/aboutcode-org/dejacode/issues/507 + +- feat: Compliance control center dashboard + https://github.com/aboutcode-org/dejacode/issues/513 + +- feat: refine package search to display the most recent versions first + https://github.com/aboutcode-org/dejacode/issues/504 + +- fix: increase the max_length to 255 for api key fields + https://github.com/aboutcode-org/dejacode/issues/518 + +- fix: product is_vulnerable filter on list view + https://github.com/aboutcode-org/dejacode/issues/516 + ### Version 5.7.0 - Upgrade Python version to 3.14 diff --git a/dejacode/__init__.py b/dejacode/__init__.py index ace993dc..35c882bb 100644 --- a/dejacode/__init__.py +++ b/dejacode/__init__.py @@ -14,7 +14,7 @@ import git -VERSION = "5.7.0" +VERSION = "5.7.1" PROJECT_DIR = Path(__file__).resolve().parent ROOT_DIR = PROJECT_DIR.parent diff --git a/pyproject.toml b/pyproject.toml index 7c3e5fb5..33b17b00 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "dejacode" -version = "5.7.0" +version = "5.7.1" description = "Automate open source license compliance and ensure supply chain integrity" readme = "README.rst" requires-python = ">=3.14,<3.15"