diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e2b0b4..fba617e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change Log +## [2.0.2] - 2022-01-10 +- Fixed version number comparisons for when a version segment reaches two digits + ## [2.0.1] - 2021-09-17 - Fixed console status reporting of whether or not errors were found diff --git a/RedfishInteropValidator.py b/RedfishInteropValidator.py index ce525e5..25abcc3 100644 --- a/RedfishInteropValidator.py +++ b/RedfishInteropValidator.py @@ -10,7 +10,7 @@ import json from datetime import datetime -tool_version = '2.0.1' +tool_version = '2.0.2' my_logger = logging.getLogger() my_logger.setLevel(logging.DEBUG)