File tree 3 files changed +6
-2
lines changed
3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ ## [ 2.1.4] - 2020-01-10
4
+ - Added fallback to using '/redfish/v1/SessionService/Sessions' if the service root does not contains the 'Links/Sessions' property for login
5
+ - Added Python version checks to use time.perf_counter() in favor of time.clock()
6
+
3
7
## [ 2.1.3] - 2019-10-11
4
8
- Added IPv6 support to SSDP discovery
5
9
- Enhanced handling of poorly formatted URIs to not throw an exception
Original file line number Diff line number Diff line change 7
7
long_description = f .read ()
8
8
9
9
setup (name = 'redfish' ,
10
- version = '2.1.3 ' ,
10
+ version = '2.1.4 ' ,
11
11
description = 'Redfish Python Library' ,
12
12
long_description = long_description ,
13
13
long_description_content_type = 'text/x-rst' ,
Original file line number Diff line number Diff line change 5
5
""" Redfish restful library """
6
6
7
7
__all__ = ['rest' , 'ris' , 'discovery' ]
8
- __version__ = "2.1.3 "
8
+ __version__ = "2.1.4 "
9
9
10
10
from redfish .rest .v1 import redfish_client
11
11
from redfish .rest .v1 import AuthMethod
You can’t perform that action at this time.
0 commit comments