diff --git a/CHANGELOG.md b/CHANGELOG.md index bc5b9a6..25dccd3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change Log +## [3.2.5] - 2024-09-13 +- Added new 'check_connectivity' option when creating the client object + ## [3.2.4] - 2024-08-09 - No code changes; releasing again for PyPI publication diff --git a/setup.py b/setup.py index 2bebcb6..890a50d 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ long_description = f.read() setup(name='redfish', - version='3.2.4', + version='3.2.5', 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 f4858f2..a0adf00 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.4" +__version__ = "3.2.5" from redfish.rest.v1 import redfish_client from redfish.rest.v1 import AuthMethod