diff --git a/CHANGELOG.md b/CHANGELOG.md index d6bc169..2d6c6ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## [1.2.6] - 2024-07-19 +- Added common entry points to invoking HTTP operations to gracefully handle exception cases +- Updated logic when walking the data model to better handle cases where services do not correctly follow schema definitions + ## [1.2.5] - 2024-05-03 - Updated existing tests to align with version 1.20.0 of the Redfish Specification - Added methods to gracefully handle invalid JSON responses diff --git a/redfish_protocol_validator/console_scripts.py b/redfish_protocol_validator/console_scripts.py index 3156683..afc8afa 100644 --- a/redfish_protocol_validator/console_scripts.py +++ b/redfish_protocol_validator/console_scripts.py @@ -25,7 +25,7 @@ from redfish_protocol_validator.constants import Result from redfish_protocol_validator.system_under_test import SystemUnderTest -tool_version = '1.2.5' +tool_version = '1.2.6' def perform_tests(sut: SystemUnderTest): diff --git a/setup.py b/setup.py index 63e2aec..0ec0fde 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name="redfish_protocol_validator", - version="1.2.5", + version="1.2.6", description="Redfish Protocol Validator", long_description=long_description, long_description_content_type="text/markdown",