Skip to content
This repository was archived by the owner on Aug 27, 2024. It is now read-only.

Commit 12df2b1

Browse files
authored
Merge pull request #6 from DMTF/1.0.1-Tagging
1.0.1 Versioning
2 parents b48612e + af2dd7d commit 12df2b1

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
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

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff 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

Redfish-JsonSchema-ResponseValidator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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
'''
@@ -44,7 +44,7 @@
4444
import getopt
4545
import requests
4646

47-
tool_version = '1.0.0'
47+
tool_version = '1.0.1'
4848

4949
def usage():
5050
print ('\nRedfish-JsonSchema-ResponseValidator.py usage:')

0 commit comments

Comments
 (0)