diff --git a/CHANGELOG.md b/CHANGELOG.md index b71a2c8..7df5828 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change Log +## [2.0.5] - 2018-11-30 +- Fixed handling of gzip content encoding + ## [2.0.4] - 2018-10-26 - Added discovery module with SSDP support diff --git a/setup.py b/setup.py index 09f7b16..f2e3755 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ long_description = f.read() setup(name='redfish', - version='2.0.4', + version='2.0.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 ad12679..c39c294 100644 --- a/src/redfish/__init__.py +++ b/src/redfish/__init__.py @@ -7,7 +7,7 @@ """ Redfish restful library """ __all__ = ['rest', 'ris', 'discovery'] -__version__ = "2.0.4" +__version__ = "2.0.5" from redfish.rest.v1 import redfish_client from redfish.rest.v1 import AuthMethod