From 4f1aa87c90bce52fab225cefb6a39104a71080b9 Mon Sep 17 00:00:00 2001 From: GitHub Release Workflow <> Date: Fri, 12 Apr 2024 19:43:37 +0000 Subject: [PATCH] 2.4.3 versioning Signed-off-by: GitHub Release Workflow <> --- CHANGELOG.md | 3 +++ redfish_service_validator/RedfishServiceValidator.py | 2 +- setup.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d8ebe3d..dd88530 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change Log +## [2.4.3] - 2024-04-12 +- Reduced severity of missing schema for an action from error to warning to be consistent with other warnings + ## [2.4.2] - 2024-03-22 - Made corrections to skipping OEM checks when '--nooemcheck' is specified diff --git a/redfish_service_validator/RedfishServiceValidator.py b/redfish_service_validator/RedfishServiceValidator.py index 72ab4d8..4aad6ef 100755 --- a/redfish_service_validator/RedfishServiceValidator.py +++ b/redfish_service_validator/RedfishServiceValidator.py @@ -16,7 +16,7 @@ from urllib.parse import urlparse from collections import Counter -tool_version = '2.4.2' +tool_version = '2.4.3' # Set up the custom debug levels VERBOSE1 = logging.INFO-1 diff --git a/setup.py b/setup.py index 283de2b..5853979 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name="redfish_service_validator", - version="2.4.2", + version="2.4.3", description="Redfish Service Validator", long_description=long_description, long_description_content_type="text/markdown",