diff --git a/HISTORY.rst b/HISTORY.rst index 1ebecef9..6642d4b0 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,10 @@ History ======= +0.9.8 (2020-04-22) +--------------------- +* Adds support for IMC version 4.1(1c), 4.1(1d) + 0.9.7 (2019-07-08) --------------------- * Adds support for IMC version 4.0(1c), 4.0(2b) diff --git a/imcsdk/__init__.py b/imcsdk/__init__.py index 270faee9..569e9f8b 100644 --- a/imcsdk/__init__.py +++ b/imcsdk/__init__.py @@ -57,4 +57,4 @@ def set_log_level(level=logging.DEBUG): __author__ = 'Cisco Systems' __email__ = 'ucs-python@cisco.com' -__version__ = '0.9.7' +__version__ = '0.9.8' diff --git a/setup.cfg b/setup.cfg index a4d4d554..19d901ec 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.9.7 +current_version = 0.9.8 commit = False tag = False diff --git a/setup.py b/setup.py index ee2cfdaf..7974b820 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ setup( name='imcsdk', - version='0.9.7', + version='0.9.8', description="python SDK for Cisco UCS IMC", long_description=readme + '\n\n' + history, long_description_content_type='text/x-rst',