diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a14b4a..76d0413 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change Log +## [2.2.1] - 2024-04-19 +- Fixed use case checking to only report an error if zero resources are found that match a mandatory use case + ## [2.2.0] - 2024-03-22 - Corrected 'WriteRequirement' checking to not produce errors when a property is marked as 'Recommended', but writes are not supported diff --git a/redfish_interop_validator/RedfishInteropValidator.py b/redfish_interop_validator/RedfishInteropValidator.py index f1afbdf..2f7032c 100644 --- a/redfish_interop_validator/RedfishInteropValidator.py +++ b/redfish_interop_validator/RedfishInteropValidator.py @@ -17,7 +17,7 @@ from redfish_interop_validator.profile import getProfiles, checkProfileAgainstSchema, hashProfile from redfish_interop_validator.validateResource import validateSingleURI, validateURITree -tool_version = '2.2.0' +tool_version = '2.2.1' # Set up the custom debug levels VERBOSE1 = logging.INFO - 1 diff --git a/setup.py b/setup.py index c5cca6d..ed9722c 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name="redfish_interop_validator", - version="2.2.0", + version="2.2.1", description="Redfish Interop Validator", long_description=long_description, long_description_content_type="text/markdown",