diff --git a/CHANGELOG.md b/CHANGELOG.md index d55a7dc99..5dfbf6e72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ # CHANGELOG +## v2.43.0 (2025-01-14) + +### Features + +- Add recalc admin api + ([`4b70af5`](https://github.com/RedHatInsights/vulnerability-engine/commit/4b70af555840b449fcc2a9315cdffcb7085e1c5c)) + +RHINENG-15130 + + ## v2.42.43 (2025-01-11) ### Chores diff --git a/common/constants.py b/common/constants.py index de7d6efa2..ac323795d 100644 --- a/common/constants.py +++ b/common/constants.py @@ -9,7 +9,7 @@ CFG = Config() -APP_VERSION = "2.42.43" +APP_VERSION = "2.43.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 ae7b0f543..a3a4d837e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,7 +28,7 @@ profile = "black" [tool.poetry] name = "vulnerability-engine" -version = "2.42.43" +version = "2.43.0" description = "" authors = ["RH Insights "] readme = "README.md"