From ad73ed112dd914105d3c39b905dfb47066a172b9 Mon Sep 17 00:00:00 2001 From: GitHub Release Workflow <> Date: Tue, 24 Dec 2024 00:50:21 +0000 Subject: [PATCH] 3.2.7 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 43a8ddf..291556f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change Log +## [3.2.7] - 2024-12-24 +- Added JSON formatting of responses to debug logs + ## [3.2.6] - 2024-11-15 - Added workaround for services incorrectly responding with 401 when accessing the service root diff --git a/setup.py b/setup.py index 42c8d6a..95cbee6 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ long_description = f.read() setup(name='redfish', - version='3.2.6', + version='3.2.7', 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 b27d37a..e438fa5 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.6" +__version__ = "3.2.7" from redfish.rest.v1 import redfish_client from redfish.rest.v1 import AuthMethod