diff --git a/CHANGELOG.md b/CHANGELOG.md index 39374c0..ba8f2c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change Log +## [2.0.8] - 2019-05-17 +- Added helper functions for Task processing + ## [2.0.7] - 2019-02-08 - Added optional timeout and max retry arguments diff --git a/setup.py b/setup.py index 95a6fe2..7ba9270 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ long_description = f.read() setup(name='redfish', - version='2.0.7', + version='2.0.8', 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 c87e97a..466cc4a 100644 --- a/src/redfish/__init__.py +++ b/src/redfish/__init__.py @@ -5,7 +5,7 @@ """ Redfish restful library """ __all__ = ['rest', 'ris', 'discovery'] -__version__ = "2.0.7" +__version__ = "2.0.8" from redfish.rest.v1 import redfish_client from redfish.rest.v1 import AuthMethod