diff --git a/CHANGELOG.md b/CHANGELOG.md index 22e77174c..10488780c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ +## v2.34.0 (2023-12-06) + +### Feature + +* feat: enable edge_parity feature flag ([`5baee7d`](https://github.com/RedHatInsights/vulnerability-engine/commit/5baee7da04bea38b60052949f40f95388f725d18)) + + ## v2.33.0 (2023-12-05) ### Chore diff --git a/common/constants.py b/common/constants.py index e5b6000eb..e2408b660 100644 --- a/common/constants.py +++ b/common/constants.py @@ -8,7 +8,7 @@ CFG = Config() -APP_VERSION = "2.33.0" +APP_VERSION = "2.34.0" 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 36d1c24b2..aa08d3bf0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ profile = "black" [tool.poetry] name = "vulnerability-engine" -version = "2.33.0" +version = "2.34.0" description = "" authors = [""] readme = "README.md"