This repository was archived by the owner on Aug 27, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +12
-2
lines changed
Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 11# Change Log
22
3+ ## [ 1.0.1] - 2018-10-12
4+ - Added -l option to validate a single, local JSON file
5+
36## [ 1.0.0] - 2018-08-17
47- Error message improvements
58- Added support for caching of schemas
Original file line number Diff line number Diff line change @@ -87,6 +87,13 @@ NOTE: here is a shortcut bash script
8787* filter tests to not try to validate /redfish (the version response) since it does not contain an @odata .id prop
8888* filter tests to not try to validate /redfish/v1/odata/index.json (the Odata Service Doc) since it does not have an @odata .id prop
8989
90+ ## Release Process
91+
92+ 1 . Update ` CHANGELOG.md ` with the list of changes since the last release
93+ 2 . Update the ` tool_version ` variable in ` Redfish-JsonSchema-ResponseValidator.py ` to reflect the new tool version
94+ 3 . Push changes to Github
95+ 4 . Create a new release in Github
96+
9097## See Also:
9198
9299* Redfish-Mockup-Creator
Original file line number Diff line number Diff line change 11#!/usr/bin/python
22# Copyright Notice:
3- # Copyright 2017 Distributed Management Task Force, Inc . All rights reserved.
3+ # Copyright 2017 DMTF . All rights reserved.
44# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-JsonSchema-ResponseValidator/blob/master/LICENSE.md
55
66'''
4444import getopt
4545import requests
4646
47- tool_version = '1.0.0 '
47+ tool_version = '1.0.1 '
4848
4949def usage ():
5050 print ('\n Redfish-JsonSchema-ResponseValidator.py usage:' )
You can’t perform that action at this time.
0 commit comments