From 1419808af66990a979b2f58eaf092c16f3b576e9 Mon Sep 17 00:00:00 2001 From: GitHub Release Workflow <> Date: Fri, 15 Nov 2024 20:11:34 +0000 Subject: [PATCH] 3.2.6 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 25dccd3..43a8ddf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change Log +## [3.2.6] - 2024-11-15 +- Added workaround for services incorrectly responding with 401 when accessing the service root + ## [3.2.5] - 2024-09-13 - Added new 'check_connectivity' option when creating the client object diff --git a/setup.py b/setup.py index 890a50d..42c8d6a 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ long_description = f.read() setup(name='redfish', - version='3.2.5', + version='3.2.6', 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 a0adf00..b27d37a 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.5" +__version__ = "3.2.6" from redfish.rest.v1 import redfish_client from redfish.rest.v1 import AuthMethod