diff --git a/HISTORY.rst b/HISTORY.rst index f8ae1458..0da55450 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,10 @@ History ======= +0.9.10 (2020-04-23) +--------------------- +* More python3 compatibility fixes + 0.9.9 (2020-04-22) --------------------- * Fixes an issue with version meta diff --git a/imcsdk/__init__.py b/imcsdk/__init__.py index d61217ad..41b0be42 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.9' +__version__ = '0.9.10' diff --git a/setup.cfg b/setup.cfg index 61655571..4f340878 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.9.9 +current_version = 0.9.10 commit = False tag = False diff --git a/setup.py b/setup.py index 420ac93a..925cff85 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ setup( name='imcsdk', - version='0.9.9', + version='0.9.10', description="python SDK for Cisco UCS IMC", long_description=readme + '\n\n' + history, long_description_content_type='text/x-rst',