Skip to content

Commit dad6b2a

Browse files
author
GitHub Release Workflow
committed
3.2.9 versioning
Signed-off-by: GitHub Release Workflow <>
1 parent 11451bd commit dad6b2a

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

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

3+
## [3.2.9] - 2025-03-07
4+
- Added optional 'headers' argument to the 'login' method
5+
- Clarified exception message when raising 'ServerDownOrUnreachableError'
6+
37
## [3.2.8] - 2025-01-24
48
- Updated 'dict' handling for responses without a body and 500 responses with a non-JSON body to use an empty dictionary
59

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
long_description = f.read()
1313

1414
setup(name='redfish',
15-
version='3.2.8',
15+
version='3.2.9',
1616
description='Redfish Python Library',
1717
long_description=long_description,
1818
long_description_content_type='text/x-rst',

src/redfish/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
""" Redfish restful library """
77

88
__all__ = ['rest', 'ris', 'discovery', 'messages']
9-
__version__ = "3.2.8"
9+
__version__ = "3.2.9"
1010

1111
from redfish.rest.v1 import redfish_client
1212
from redfish.rest.v1 import AuthMethod

0 commit comments

Comments
 (0)