diff --git a/CHANGELOG.md b/CHANGELOG.md index 926bedc..4347d39 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Change Log +## [2.1.8] - 2020-08-10 +- Added option to SSDP discover to bind to a specified address +- Added ability to override built-in HTTP headers +- Fixed issue where the location of a seesion was not being tracked properly for HTTP connections + ## [2.1.7] - 2020-07-06 - Added support for setting the 'Content-Type' header to 'application/octet-stream' when binary data is provided in a request diff --git a/setup.py b/setup.py index e844686..54720c3 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ long_description = f.read() setup(name='redfish', - version='2.1.7', + version='2.1.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 7b61a5b..02ba887 100644 --- a/src/redfish/__init__.py +++ b/src/redfish/__init__.py @@ -5,7 +5,7 @@ """ Redfish restful library """ __all__ = ['rest', 'ris', 'discovery'] -__version__ = "2.1.7" +__version__ = "2.1.8" from redfish.rest.v1 import redfish_client from redfish.rest.v1 import AuthMethod