diff --git a/CHANGELOG.md b/CHANGELOG.md index fcf90903..670d5b95 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ # CHANGELOG +## v2.73.1 (2025-01-23) + +### Chores + +- Fix theoretical sql injection + ([`1aeb122`](https://github.com/RedHatInsights/vmaas/commit/1aeb1223d26e310b24bfecf5ac1bac75b3126a84)) + + ## v2.73.0 (2025-01-23) ### Features diff --git a/pyproject.toml b/pyproject.toml index 208e95e4..6420910d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,7 +21,7 @@ patch_tags = ["build", "chore", "ci", "fix", "perf", "refactor"] [tool.poetry] name = "vmaas" -version = "2.73.0" +version = "2.73.1" description = "" authors = [""] readme = "README.md" diff --git a/vmaas/common/constants.py b/vmaas/common/constants.py index 4080643f..f8fe5993 100644 --- a/vmaas/common/constants.py +++ b/vmaas/common/constants.py @@ -2,4 +2,4 @@ Common constants declaration module. """ -VMAAS_VERSION = "2.73.0" +VMAAS_VERSION = "2.73.1"