diff --git a/CHANGELOG.md b/CHANGELOG.md index ff207ff..6c14b70 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change Log +## [1.2.0] - 2023-08-22 +- Added 'forcefolderrename' argument to replace characters that are disallowed in Windows folder names with underscores + ## [1.1.9] - 2022-07-08 - Made change to allow for the scheme to be included in the 'rhost' argument diff --git a/redfishMockupCreate.py b/redfishMockupCreate.py index e07b690..6f63a7c 100644 --- a/redfishMockupCreate.py +++ b/redfishMockupCreate.py @@ -24,7 +24,7 @@ from redfish import redfish_logger # Version info -tool_version = "1.1.9" +tool_version = "1.2.0" # For Windows, there are restricted characters in folder names that could be used in URIs disallowed_folder_characters_win = [ ":", "*", "?", "\"", "<", ">", "|" ]