Skip to content

Commit 7220d9b

Browse files
author
GitHub Release Workflow
committed
2.5.0 versioning
Signed-off-by: GitHub Release Workflow <>
1 parent d436783 commit 7220d9b

19 files changed

+23
-20
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.5.0] - 2025-05-16
4+
- Corrected regex pattern for date-time properties
5+
36
## [2.4.9] - 2024-09-27
47
- Added 'requesttimeout' and 'requestattempts' arguments
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) 2016-2024, Contributing Member(s) of Distributed Management Task
3+
Copyright (c) 2016-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 2016-2024 DMTF. All rights reserved.
1+
Copyright 2016-2025 DMTF. All rights reserved.
22

33
# Redfish Service Validator
44

RedfishServiceValidator.py

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

RedfishServiceValidatorGui.py

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

redfish_service_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 2016-2024 DMTF. All rights reserved.
2+
# Copyright 2016-2025 DMTF. All rights reserved.
33
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/main/LICENSE.md
44

55
"""

redfish_service_validator/RedfishServiceValidator.py

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

55
import os
@@ -16,7 +16,7 @@
1616
from urllib.parse import urlparse
1717
from collections import Counter
1818

19-
tool_version = '2.4.9'
19+
tool_version = '2.5.0'
2020

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

redfish_service_validator/RedfishServiceValidatorGui.py

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

55
"""

redfish_service_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 2016-2024 DMTF. All rights reserved.
2+
# Copyright 2016-2025 DMTF. All rights reserved.
33
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/main/LICENSE.md
44

55
import configparser

redfish_service_validator/helper.py

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

55
import re

0 commit comments

Comments
 (0)