Skip to content

Commit 309dbf9

Browse files
committedOct 4, 2021
2.0.4 Versioning
Signed-off-by: Mike Raineri <[email protected]>
1 parent b0e12fb commit 309dbf9

File tree

3 files changed

+68
-1
lines changed

3 files changed

+68
-1
lines changed
 

‎CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Change Log
22

3+
## [2.0.4] - 2021-10-04
4+
- Updated schema pack link to point to the latest DSP8010 bundle
5+
36
## [2.0.3] - 2021-09-07
47
- Refactored code to make schema parsing and structure building for resource definitions to be modular
58

‎CONTRIBUTING.md

+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
# Contributing
2+
3+
## Overview
4+
5+
This repository is maintained by the [DMTF](https://www.dmtf.org/ "https://www.dmtf.org/"). All contributions are reviewed and approved by members of the organization.
6+
7+
## Submitting Issues
8+
9+
Bugs, feature requests, and questions are all submitted in the "Issues" section for the project. DMTF members are responsible for triaging and addressing issues.
10+
11+
## Contribution Process
12+
13+
1. Fork the repository.
14+
2. Make and commit changes.
15+
3. Make a pull request.
16+
17+
All contributions must adhere to the BSD 3-Clause License described in the LICENSE.md file, and the [Developer Certificate of Origin](#developer-certificate-of-origin).
18+
19+
Pull requests are reviewed and approved by DMTF members.
20+
21+
## Developer Certificate of Origin
22+
23+
All contributions must adhere to the [Developer Certificate of Origin (DCO)](http://developercertificate.org "http://developercertificate.org").
24+
25+
The DCO is an attestation attached to every contribution made by every developer. In the commit message of the contribution, the developer adds a "Signed-off-by" statement and thereby agrees to the DCO. This can be added by using the `--signoff` parameter with `git commit`.
26+
27+
Full text of the DCO:
28+
29+
```
30+
Developer Certificate of Origin
31+
Version 1.1
32+
33+
Copyright (C) 2004, 2006 The Linux Foundation and its contributors.
34+
35+
Everyone is permitted to copy and distribute verbatim copies of this
36+
license document, but changing it is not allowed.
37+
38+
39+
Developer's Certificate of Origin 1.1
40+
41+
By making a contribution to this project, I certify that:
42+
43+
(a) The contribution was created in whole or in part by me and I
44+
have the right to submit it under the open source license
45+
indicated in the file; or
46+
47+
(b) The contribution is based upon previous work that, to the best
48+
of my knowledge, is covered under an appropriate open source
49+
license and I have the right under that license to submit that
50+
work with modifications, whether created in whole or in part
51+
by me, under the same open source license (unless I am
52+
permitted to submit under a different license), as indicated
53+
in the file; or
54+
55+
(c) The contribution was provided directly to me by some other
56+
person who certified (a), (b) or (c) and I have not modified
57+
it.
58+
59+
(d) I understand and agree that this project and the contribution
60+
are public and that a record of the contribution (including all
61+
personal information I submit with it, including my sign-off) is
62+
maintained indefinitely and may be redistributed consistent with
63+
this project or the open source license(s) involved.
64+
```

‎RedfishServiceValidator.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import json
1010
from datetime import datetime
1111

12-
tool_version = '2.0.3'
12+
tool_version = '2.0.4'
1313

1414
my_logger = logging.getLogger()
1515
my_logger.setLevel(logging.DEBUG)

0 commit comments

Comments
 (0)
Please sign in to comment.