From f9576d591b61625f22dc08e307a5bfdd669d4609 Mon Sep 17 00:00:00 2001 From: Vikrant Balyan Date: Wed, 25 Jan 2017 08:56:02 +0530 Subject: [PATCH] bumping version for next release (#139) Signed-off-by: vvb --- HISTORY.rst | 4 +++- setup.cfg | 5 +++-- setup.py | 2 +- ucsmsdk/__init__.py | 2 +- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 1d32431d..2f192dec 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,7 +3,7 @@ History ------- -0.9.2.1 () +0.9.3.0 (2017-01-25) --------------------- * Support for estimating impact of a transaction - `handle.estimate_impact` @@ -15,6 +15,8 @@ History * Special characters like <,>,& in XML values are deemed invalid and cause failure in parsing XML. Added a recovery logic if these exist in the XML value fields. +* Support for serialization, deserialization of UcsHandle +* Support for UCSM inventory via `get_inventory` API 0.9.2.0 (2016-09-21) --------------------- diff --git a/setup.cfg b/setup.cfg index 88435859..723a6202 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [bumpversion] -current_version = 0.9.2.0 -commit = True +current_version = 0.9.3.0 +commit = False tag = True [bumpversion:file:setup.py] @@ -12,3 +12,4 @@ universal = 1 [metadata] description-file = README.md + diff --git a/setup.py b/setup.py index d6b04a70..1030733d 100755 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ setup( name='ucsmsdk', - version='0.9.2.0', + version='0.9.3.0', description="Python SDK for Cisco UCS", long_description=readme + '\n\n' + history, author="Cisco Systems Inc", diff --git a/ucsmsdk/__init__.py b/ucsmsdk/__init__.py index a3ff7a53..ce8135cc 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.2.0' +__version__ = '0.9.3.0'