From 45f49c0da735d025ff24061755c36f337a3b4b0c Mon Sep 17 00:00:00 2001 From: Mike Raineri Date: Fri, 1 Apr 2022 16:02:00 -0400 Subject: [PATCH] 2.1.4 Versioning Signed-off-by: Mike Raineri --- CHANGELOG.md | 4 ++++ RedfishServiceValidator.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b4b2d4..b2487b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## [2.1.4] - 2022-04-01 +- Corrected parent reference to allow for '@odata.id' testing on referenceable members +- Extended argument usage to allow for argument forms used in other tools, such as 'rhost' instead of 'ip' + ## [2.1.3] - 2022-03-25 - Corrected order of operations for initializing the tool to collect additional schema files from $metadata before building the data model for payload validation - Suppress warning messages for deprecated properties when the property is also marked as required diff --git a/RedfishServiceValidator.py b/RedfishServiceValidator.py index 870a4a0..55ba48b 100644 --- a/RedfishServiceValidator.py +++ b/RedfishServiceValidator.py @@ -9,7 +9,7 @@ import json from datetime import datetime -tool_version = '2.1.3' +tool_version = '2.1.4' my_logger = logging.getLogger() my_logger.setLevel(logging.DEBUG)