Skip to content

Commit 58e4a2d

Browse files
authored
Merge pull request #77 from DMTF/2.1.4-Tagging
2.1.4 Versioning
2 parents f969eea + 5985e1c commit 58e4a2d

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

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+
37
## [2.1.3] - 2019-10-11
48
- Added IPv6 support to SSDP discovery
59
- Enhanced handling of poorly formatted URIs to not throw an exception

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
long_description = f.read()
88

99
setup(name='redfish',
10-
version='2.1.3',
10+
version='2.1.4',
1111
description='Redfish Python Library',
1212
long_description=long_description,
1313
long_description_content_type='text/x-rst',

src/redfish/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
""" Redfish restful library """
66

77
__all__ = ['rest', 'ris', 'discovery']
8-
__version__ = "2.1.3"
8+
__version__ = "2.1.4"
99

1010
from redfish.rest.v1 import redfish_client
1111
from redfish.rest.v1 import AuthMethod

0 commit comments

Comments
 (0)