diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f39fc1..d8ebe3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change Log +## [2.4.2] - 2024-03-22 +- Made corrections to skipping OEM checks when '--nooemcheck' is specified + ## [2.4.1] - 2024-02-09 - Added 'collectionlimit' argument to limit the number of entries checked in a collection diff --git a/redfish_service_validator/RedfishServiceValidator.py b/redfish_service_validator/RedfishServiceValidator.py index 7f398ab..72ab4d8 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.1' +tool_version = '2.4.2' # Set up the custom debug levels VERBOSE1 = logging.INFO-1 diff --git a/setup.py b/setup.py index 6b13136..283de2b 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name="redfish_service_validator", - version="2.4.1", + version="2.4.2", description="Redfish Service Validator", long_description=long_description, long_description_content_type="text/markdown",