diff --git a/CHANGELOG.md b/CHANGELOG.md index 3df13b9..231675d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change Log +## [3.0.0] - 2021-02-20 +- Removed Python2 support + ## [2.2.0] - 2021-02-15 - Added support for `NO_PROXY` environment variable diff --git a/setup.py b/setup.py index f935c57..695615d 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ long_description = f.read() setup(name='redfish', - version='2.2.0', + version='3.0.0', 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 f1162b1..ecb78d6 100644 --- a/src/redfish/__init__.py +++ b/src/redfish/__init__.py @@ -6,7 +6,7 @@ """ Redfish restful library """ __all__ = ['rest', 'ris', 'discovery'] -__version__ = "2.2.0" +__version__ = "3.0.0" from redfish.rest.v1 import redfish_client from redfish.rest.v1 import AuthMethod