From ece58f885ad592ef64aa256b16758dd46cf660c7 Mon Sep 17 00:00:00 2001 From: Mike Raineri Date: Mon, 30 Aug 2021 10:08:26 -0400 Subject: [PATCH] 2.0.0 versioning --- CHANGELOG.md | 4 ++++ RedfishInteropValidator.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c34eb0..2d4ea74 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## [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 + ## [1.1.8] - 2021-06-18 - Corrected conditional requirements to properly account for all values specified diff --git a/RedfishInteropValidator.py b/RedfishInteropValidator.py index 889ac8e..84d45ab 100644 --- a/RedfishInteropValidator.py +++ b/RedfishInteropValidator.py @@ -10,7 +10,7 @@ import json from datetime import datetime -tool_version = '1.1.8' +tool_version = '2.0.0' my_logger = logging.getLogger() my_logger.setLevel(logging.DEBUG)