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