We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ae12fb0 + 2ea7db1 commit 2e64202Copy full SHA for 2e64202
CHANGELOG.md
@@ -1,5 +1,8 @@
1
# Change Log
2
3
+## [2.0.8] - 2019-05-17
4
+- Added helper functions for Task processing
5
+
6
## [2.0.7] - 2019-02-08
7
- Added optional timeout and max retry arguments
8
setup.py
@@ -7,7 +7,7 @@
long_description = f.read()
9
setup(name='redfish',
10
- version='2.0.7',
+ version='2.0.8',
11
description='Redfish Python Library',
12
long_description=long_description,
13
long_description_content_type='text/x-rst',
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
0 commit comments