diff --git a/CHANGELOG.md b/CHANGELOG.md index fe3e756..926bedc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change Log +## [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 + ## [2.1.6] - 2020-06-12 - Added support for leveraging the 'HTTP_PROXY' and 'HTTPS_PROXY' environment variables to set up proxy information diff --git a/setup.py b/setup.py index fa787c9..e844686 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ long_description = f.read() setup(name='redfish', - version='2.1.6', + version='2.1.7', 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 d5c1a56..7b61a5b 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.6" +__version__ = "2.1.7" from redfish.rest.v1 import redfish_client from redfish.rest.v1 import AuthMethod