diff --git a/src/vmware/HISTORY.md b/src/vmware/HISTORY.md index 00e271bc286..e5293414539 100644 --- a/src/vmware/HISTORY.md +++ b/src/vmware/HISTORY.md @@ -1,6 +1,6 @@ # Release History -## 5.0.0 (2022-12) +## 5.0.1 (2022-12) - Update to AVS 2022-05-01 API - Add `az vmware cluster list-zones` diff --git a/src/vmware/azext_vmware/vendored_sdks/__init__.py b/src/vmware/azext_vmware/vendored_sdks/__init__.py new file mode 100644 index 00000000000..c9cfdc73e77 --- /dev/null +++ b/src/vmware/azext_vmware/vendored_sdks/__init__.py @@ -0,0 +1,12 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +__path__ = __import__('pkgutil').extend_path(__path__, __name__) diff --git a/src/vmware/setup.py b/src/vmware/setup.py index 59496d53307..2a63a4fa7fd 100644 --- a/src/vmware/setup.py +++ b/src/vmware/setup.py @@ -8,7 +8,7 @@ from io import open from setuptools import setup, find_packages -VERSION = "5.0.0" +VERSION = "5.0.1" with open('README.md', encoding='utf-8') as f: readme = f.read()