diff --git a/CHANGELOG.md b/CHANGELOG.md index dd88530..fd5e76b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change Log +## [2.4.4] - 2024-05-03 +- Added test to ensure write-only properties are null in responses + ## [2.4.3] - 2024-04-12 - Reduced severity of missing schema for an action from error to warning to be consistent with other warnings diff --git a/redfish_service_validator/RedfishServiceValidator.py b/redfish_service_validator/RedfishServiceValidator.py index 4aad6ef..aec9cb9 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.3' +tool_version = '2.4.4' # Set up the custom debug levels VERBOSE1 = logging.INFO-1 diff --git a/setup.py b/setup.py index 5853979..4c0fc70 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name="redfish_service_validator", - version="2.4.3", + version="2.4.4", description="Redfish Service Validator", long_description=long_description, long_description_content_type="text/markdown",