From 71f13c3fe93cbea7412094808d6b8fd0748430ca Mon Sep 17 00:00:00 2001 From: GitHub Release Workflow <> Date: Fri, 9 Sep 2022 19:28:55 +0000 Subject: [PATCH] 3.1.7 versioning Signed-off-by: GitHub Release Workflow <> --- CHANGELOG.md | 3 +++ setup.py | 2 +- src/redfish/__init__.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 65422d7..d788100 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change Log +## [3.1.7] - 2022-09-09 +- Added handling for extracting error information when a session could not be created + ## [3.1.6] - 2022-05-12 - Fixed issue where the 'read' method on response objects always return strings - Modified query parameter encoding to not percent-encode characters allowed in query strings per RFC3986 diff --git a/setup.py b/setup.py index e6ed52a..c370c76 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ long_description = f.read() setup(name='redfish', - version='3.1.6', + version='3.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 070fc06..0eebbaa 100644 --- a/src/redfish/__init__.py +++ b/src/redfish/__init__.py @@ -6,7 +6,7 @@ """ Redfish restful library """ __all__ = ['rest', 'ris', 'discovery'] -__version__ = "3.1.6" +__version__ = "3.1.7" from redfish.rest.v1 import redfish_client from redfish.rest.v1 import AuthMethod