diff --git a/CHANGELOG.md b/CHANGELOG.md index e29a179..8029434 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## [2.1.3] - 2019-10-11 +- Added IPv6 support to SSDP discovery +- Enhanced handling of poorly formatted URIs to not throw an exception + ## [2.1.2] - 2019-09-16 - Fixed usage of capath and cafile when setting them to None diff --git a/setup.py b/setup.py index 3602dda..f1d6832 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ long_description = f.read() setup(name='redfish', - version='2.1.2', + version='2.1.3', 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 d96aa24..4f3ffcd 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.2" +__version__ = "2.1.3" from redfish.rest.v1 import redfish_client from redfish.rest.v1 import AuthMethod