diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a44a693..15e303b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,23 @@ # CHANGELOG +## v2.68.0 (2024-10-15) + +### Features + +* feat: remove use_csaf from request + +RHINENG-7872 ([`50420e9`](https://github.com/RedHatInsights/vmaas/commit/50420e93c0de8622b3abf16eb31ea791a662fa3d)) + +### Fixes + +* fix: env var to disable newer release version updates + +RHINENG-13676 + +RHINENG-4854 ([`1513a35`](https://github.com/RedHatInsights/vmaas/commit/1513a358de1b895c8521649e5ba87f1a0eb99a65)) + + ## v2.67.4 (2024-10-14) ### Chores diff --git a/pyproject.toml b/pyproject.toml index 6dfd0e63..fbc156ef 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.67.4" +version = "2.68.0" description = "" authors = [""] readme = "README.md" diff --git a/vmaas/common/constants.py b/vmaas/common/constants.py index 618f9900..f92933c3 100644 --- a/vmaas/common/constants.py +++ b/vmaas/common/constants.py @@ -2,4 +2,4 @@ Common constants declaration module. """ -VMAAS_VERSION = "2.67.4" +VMAAS_VERSION = "2.68.0"