diff --git a/CHANGELOG.md b/CHANGELOG.md index c324d96..fe3e756 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change Log +## [2.1.6] - 2020-06-12 +- Added support for leveraging the 'HTTP_PROXY' and 'HTTPS_PROXY' environment variables to set up proxy information + ## [2.1.5] - 2020-02-03 - Removed urlparse2 dependency - Updated jsonpatch requirements; jsonpatch 1.25 dropped Python 3.4 support diff --git a/setup.py b/setup.py index 8205f3b..fa787c9 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ long_description = f.read() setup(name='redfish', - version='2.1.5', + version='2.1.6', 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 64d8dd3..d5c1a56 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.5" +__version__ = "2.1.6" from redfish.rest.v1 import redfish_client from redfish.rest.v1 import AuthMethod