From 8cb66ed5eb628ed859f595fc197d98e33570ee9f Mon Sep 17 00:00:00 2001 From: "Vikrant Balyan (vvb)" Date: Fri, 13 Jan 2023 22:41:15 +0530 Subject: [PATCH 1/2] updating schema for 423b --- HISTORY.rst | 4 ++++ setup.cfg | 2 +- setup.py | 2 +- ucsmsdk/__init__.py | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 172d8d49..0b148631 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,10 @@ History ------- +0.9.14 (2023-01-13) +--------------------- +* Support for UCSM release 4.2(3b) + 0.9.13 (2022-07-21) --------------------- * Support for UCSM release 4.2(2a) diff --git a/setup.cfg b/setup.cfg index 519b61d1..cb59ac49 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.9.13 +current_version = 0.9.14 commit = False tag = False diff --git a/setup.py b/setup.py index 95c18324..b1297351 100755 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ setup( name='ucsmsdk', - version='0.9.13', + version='0.9.14', 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 19c01eeb..b09b4220 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.13' +__version__ = '0.9.14' From 2774db885e6a52de8b24bc0de10be8b99017f186 Mon Sep 17 00:00:00 2001 From: Vikrant Balyan Date: Fri, 13 Jan 2023 22:43:14 +0530 Subject: [PATCH 2/2] Update main.yaml --- .github/workflows/main.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 29b5bcfe..ec9e7196 100755 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -5,7 +5,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - version: [2.7, 3.8] + version: [3.8] steps: - uses: actions/checkout@v2