diff --git a/CHANGELOG.md b/CHANGELOG.md index 231675d..20fa62c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Change Log +## [3.0.1] - 2021-06-04 +- Provided additional handling for HTTP 301 and 302 redirects +- Changed session creation to not follow redirects in order to ensure the session token and location are not lost +- Enhanced invalid JSON response handling to better highlight a service error + ## [3.0.0] - 2021-02-20 - Removed Python2 support diff --git a/setup.py b/setup.py index 695615d..ff769e8 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ long_description = f.read() setup(name='redfish', - version='3.0.0', + version='3.0.1', 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 ecb78d6..17d5b42 100644 --- a/src/redfish/__init__.py +++ b/src/redfish/__init__.py @@ -6,7 +6,7 @@ """ Redfish restful library """ __all__ = ['rest', 'ris', 'discovery'] -__version__ = "3.0.0" +__version__ = "3.0.1" from redfish.rest.v1 import redfish_client from redfish.rest.v1 import AuthMethod