diff --git a/CHANGELOG.md b/CHANGELOG.md index c13806fa1..fd9053a03 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ +## v2.7.1 (2023-07-31) + +### Fix + +* fix: corrected condition for caching ([`b9934e4`](https://github.com/RedHatInsights/vulnerability-engine/commit/b9934e45afe4a30f272d3ecc9b5aedcebc093f35)) + + ## v2.7.0 (2023-07-31) ### Feature diff --git a/common/constants.py b/common/constants.py index a95e25c9e..aa907fca2 100644 --- a/common/constants.py +++ b/common/constants.py @@ -8,7 +8,7 @@ CFG = Config() -APP_VERSION = "2.7.0" +APP_VERSION = "2.7.1" TIMESTAMP_LAST_REPO_BASED_EVAL = "last_eval_repo_based" VMAAS_CVES_ENDPOINT = f"{CFG.vmaas_host}/api/vmaas/v3/cves" VMAAS_REPOS_ENDPOINT = f"{CFG.vmaas_host}/api/vmaas/v3/repos" diff --git a/pyproject.toml b/pyproject.toml index b773cb4b3..0562d32df 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ profile = "black" [tool.poetry] name = "vulnerability-engine" -version = "2.7.0" +version = "2.7.1" description = "" authors = [""] readme = "README.md"