diff --git a/HISTORY.rst b/HISTORY.rst index 6ca753bc..e1fa0edd 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,10 @@ History ------- +0.9.23 (2025-09-19) +--------------------- +* Support for UCSM release 6.0(1b) + 0.9.22 (2025-05-15) --------------------- * Support for UCSM release 4.3(6a) @@ -13,7 +17,7 @@ History 0.9.20 (2024-09-20) --------------------- -* Fixes for encoding failure during firmware upload +* Fixes for encoding failure during firmware upload 0.9.19 (2024-08-28) --------------------- diff --git a/setup.cfg b/setup.cfg index 00dad10e..5f40a311 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.9.22 +current_version = 0.9.23 commit = False tag = False diff --git a/setup.py b/setup.py index 588b02b3..c684cb9b 100755 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ setup( name='ucsmsdk', - version='0.9.22', + version='0.9.23', description="Python SDK for Cisco UCS", long_description=readme + '\n\n' + history, long_description_content_type='text/markdown', diff --git a/ucsmsdk/__init__.py b/ucsmsdk/__init__.py index 93405cc8..3d69a624 100755 --- a/ucsmsdk/__init__.py +++ b/ucsmsdk/__init__.py @@ -34,4 +34,4 @@ __author__ = 'Cisco Systems Inc' __email__ = 'ucs-python@cisco.com' -__version__ = '0.9.22' +__version__ = '0.9.23'