From ce3f533eb27d7aa9fc56510d466d06870502ca9a Mon Sep 17 00:00:00 2001 From: GitHub Release Workflow <> Date: Fri, 27 Sep 2024 19:31:38 +0000 Subject: [PATCH] 2.4.9 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 d62c6e3..1f6ecbb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change Log +## [2.4.9] - 2024-09-27 +- Added 'requesttimeout' and 'requestattempts' arguments + ## [2.4.8] - 2024-07-26 - Fixed link verification to ensure the linked resource is of the expected data type - Fixed usage of collection limiting to apply limits for all aspects of validation diff --git a/redfish_service_validator/RedfishServiceValidator.py b/redfish_service_validator/RedfishServiceValidator.py index c1fb1f1..84775b0 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.8' +tool_version = '2.4.9' # Set up the custom debug levels VERBOSE1 = logging.INFO-1 diff --git a/setup.py b/setup.py index 7a6c7ba..46aa391 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name="redfish_service_validator", - version="2.4.8", + version="2.4.9", description="Redfish Service Validator", long_description=long_description, long_description_content_type="text/markdown",