From 689acfe21b8b1b4d252792c987650f7a57a95b3f Mon Sep 17 00:00:00 2001 From: Mike Raineri Date: Fri, 17 Sep 2021 16:06:39 -0400 Subject: [PATCH] 2.0.1 versioning --- CHANGELOG.md | 3 +++ RedfishInteropValidator.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d4ea74..0e2b0b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change Log +## [2.0.1] - 2021-09-17 +- Fixed console status reporting of whether or not errors were found + ## [2.0.0] - 2021-08-30 - Significant changes to the CLI arguments with the tool to reduce complexity for users - Removed need for scanning schema files for performing testing of a service diff --git a/RedfishInteropValidator.py b/RedfishInteropValidator.py index c75a687..ce525e5 100644 --- a/RedfishInteropValidator.py +++ b/RedfishInteropValidator.py @@ -10,7 +10,7 @@ import json from datetime import datetime -tool_version = '2.0.0' +tool_version = '2.0.1' my_logger = logging.getLogger() my_logger.setLevel(logging.DEBUG)