diff --git a/CHANGELOG.md b/CHANGELOG.md index 448b3386b..6857607ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ +## v2.35.0 (2024-02-05) + +### Feature + +* feat: support multiple kafka brokers + +RHINENG-3748 ([`4bc728e`](https://github.com/RedHatInsights/vulnerability-engine/commit/4bc728e80fb7c05ff25659e845f248847c8ff950)) + + ## v2.34.8 (2024-02-02) ### Chore diff --git a/common/constants.py b/common/constants.py index cb821832c..f941e1f0a 100644 --- a/common/constants.py +++ b/common/constants.py @@ -9,7 +9,7 @@ CFG = Config() -APP_VERSION = "2.34.8" +APP_VERSION = "2.35.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 f4e319305..a497fedd8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ profile = "black" [tool.poetry] name = "vulnerability-engine" -version = "2.34.8" +version = "2.35.0" description = "" authors = [""] readme = "README.md"