From df7f8226c2ffa2ad76182713250f4e1859654a01 Mon Sep 17 00:00:00 2001 From: GitHub Release Workflow <> Date: Fri, 24 Jan 2025 21:11:24 +0000 Subject: [PATCH] 3.2.8 versioning Signed-off-by: GitHub Release Workflow <> --- CHANGELOG.md | 3 +++ setup.py | 2 +- src/redfish/__init__.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 291556f..298602a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change Log +## [3.2.8] - 2025-01-24 +- Updated 'dict' handling for responses without a body and 500 responses with a non-JSON body to use an empty dictionary + ## [3.2.7] - 2024-12-24 - Added JSON formatting of responses to debug logs diff --git a/setup.py b/setup.py index 95cbee6..97e7089 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ long_description = f.read() setup(name='redfish', - version='3.2.7', + version='3.2.8', description='Redfish Python Library', long_description=long_description, long_description_content_type='text/x-rst', diff --git a/src/redfish/__init__.py b/src/redfish/__init__.py index e438fa5..9e6bfd0 100644 --- a/src/redfish/__init__.py +++ b/src/redfish/__init__.py @@ -6,7 +6,7 @@ """ Redfish restful library """ __all__ = ['rest', 'ris', 'discovery', 'messages'] -__version__ = "3.2.7" +__version__ = "3.2.8" from redfish.rest.v1 import redfish_client from redfish.rest.v1 import AuthMethod