diff --git a/CHANGELOG.md b/CHANGELOG.md index e96cfbe..fc87a0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change Log +## [3.2.3] - 2024-08-09 +- Removed clearing of username and password to allow for sessions to be re-established + ## [3.2.2] - 2024-01-19 - Minor changes to fix Python 3.12 warnings with usage of raw strings diff --git a/setup.py b/setup.py index 42af756..a434156 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ long_description = f.read() setup(name='redfish', - version='3.2.2', + version='3.2.3', 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 8b796ee..f65aa32 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.2" +__version__ = "3.2.3" from redfish.rest.v1 import redfish_client from redfish.rest.v1 import AuthMethod