diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ac9c11..0f39ebf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change Log +## [1.1.3] - 2022-02-05 +- Added detection for Windows to rename directories to not use characters that conflict with folder name limitations + ## [1.1.2] - 2021-09-17 - Added --trace option to provide Redfish operation tracing between the tool and the service in the output directory - Added --maxlogentries option to limit the number of log entries obtained from each log service discovered diff --git a/redfishMockupCreate.py b/redfishMockupCreate.py index 22d6c2a..01eecd7 100644 --- a/redfishMockupCreate.py +++ b/redfishMockupCreate.py @@ -24,7 +24,7 @@ from redfish import redfish_logger # Version info -tool_version = "1.1.2" +tool_version = "1.1.3" # For Windows, there are restricted characters in folder names that could be used in URIs disallowed_folder_characters_win = [ ":", "*", "?", "\"", "<", ">", "|" ]