Skip to content

Commit 4c42dc1

Browse files
author
GitHub Release Workflow
committed
2.2.8 versioning
Signed-off-by: GitHub Release Workflow <>
1 parent dadc2ef commit 4c42dc1

File tree

16 files changed

+20
-17
lines changed

16 files changed

+20
-17
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+
## [2.2.8] - 2025-02-21
4+
- Added support for the 'RequiredResourceProfile' term
5+
36
## [2.2.7] - 2024-11-15
47
- Added support for 'ChassisType', 'DriveProtocol', 'MemoryType', 'PortProtocol', and 'ProcessorType' values for 'UseCaseType'
58

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BSD 3-Clause License
22

3-
Copyright (c) 2017-2024, Contributing Member(s) of Distributed Management Task
3+
Copyright (c) 2017-2025, Contributing Member(s) of Distributed Management Task
44
Force, Inc.. All rights reserved.
55

66
Redistribution and use in source and binary forms, with or without modification,

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2017-2024 DMTF. All rights reserved.
1+
Copyright 2017-2025 DMTF. All rights reserved.
22

33
# Redfish Interop Validator
44

RedfishInteropValidator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright Notice:
2-
# Copyright 2017-2024 DMTF. All rights reserved.
2+
# Copyright 2017-2025 DMTF. All rights reserved.
33
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Interop-Validator/blob/master/LICENSE.md
44

55
from redfish_interop_validator.RedfishInteropValidator import main, my_logger

redfish_interop_validator/RedfishInteropValidator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
# Copyright Notice:
3-
# Copyright 2017-2024 DMTF. All rights reserved.
3+
# Copyright 2017-2025 DMTF. All rights reserved.
44
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Interop-Validator/blob/master/LICENSE.md
55

66
import os
@@ -17,7 +17,7 @@
1717
from redfish_interop_validator.profile import getProfiles, checkProfileAgainstSchema, hashProfile
1818
from redfish_interop_validator.validateResource import validateSingleURI, validateURITree
1919

20-
tool_version = '2.2.7'
20+
tool_version = '2.2.8'
2121

2222
# Set up the custom debug levels
2323
VERBOSE1 = logging.INFO - 1

redfish_interop_validator/RedfishLogo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright Notice:
2-
# Copyright 2017-2024 DMTF. All rights reserved.
2+
# Copyright 2017-2025 DMTF. All rights reserved.
33
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/master/LICENSE.md
44

55
"""

redfish_interop_validator/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright Notice:
2-
# Copyright 2017-2024 DMTF. All rights reserved.
2+
# Copyright 2017-2025 DMTF. All rights reserved.
33
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/master/LICENSE.md
44

55
import configparser

redfish_interop_validator/interop.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
# Copyright Notice:
3-
# Copyright 2017-2024 DMTF. All rights reserved.
3+
# Copyright 2017-2025 DMTF. All rights reserved.
44
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Interop-Validator/blob/master/LICENSE.md
55

66
import re

redfish_interop_validator/profile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
# Copyright Notice:
3-
# Copyright 2017-2024 DMTF. All rights reserved.
3+
# Copyright 2017-2025 DMTF. All rights reserved.
44
# License: BSD 3-Clause License. For full text see link:
55
# https://github.com/DMTF/Redfish-Service-Validator/LICENSE.md
66

redfish_interop_validator/redfish.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright Notice:
2-
# Copyright 2017-2024 DMTF. All rights reserved.
2+
# Copyright 2017-2025 DMTF. All rights reserved.
33
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/master/LICENSE.md
44

55
import re

0 commit comments

Comments
 (0)