diff --git a/src/index.json b/src/index.json index a8e08d2273a..e5eb9faac72 100644 --- a/src/index.json +++ b/src/index.json @@ -281,10 +281,12 @@ ], "webapp": [ { - "filename": "webapp-0.2.0-py2.py3-none-any.whl", - "sha256Digest": "a13151c899eabb66c3d853e9e46bcd5752f78e5a75c35eb09590f4673ac49279", - "downloadUrl": "https://github.com/panchagnula/azure-cli-extensions/raw/sisirap-extensions-whl/dist/webapp-0.2.0-py2.py3-none-any.whl", + "filename": "webapp-0.2.1-py2.py3-none-any.whl", + "sha256Digest": "fe3b28cc9cb2272a36c395ed6279b2a9f925b16877962bf2448a3fa56819bfa4", + "downloadUrl": "https://github.com/panchagnula/azure-cli-extensions/raw/sisirap-extensions-whl/dist/webapp-0.2.1-py2.py3-none-any.whl", "metadata": { + "azext.isPreview": true, + "azext.minCliCoreVersion": "2.0.24", "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", @@ -320,7 +322,7 @@ "metadata_version": "2.0", "name": "webapp", "summary": "An Azure CLI Extension to manage appservice resources", - "version": "0.2.0" + "version": "0.2.1" } } ], diff --git a/src/webapp/azext_webapp/azext_metadata.json b/src/webapp/azext_webapp/azext_metadata.json index eebc88db508..0805b25d581 100644 --- a/src/webapp/azext_webapp/azext_metadata.json +++ b/src/webapp/azext_webapp/azext_metadata.json @@ -1,4 +1,4 @@ { "azext.minCliCoreVersion": "2.0.24", - "azext.isPreview" :true + "azext.isPreview": true } \ No newline at end of file diff --git a/src/webapp/setup.py b/src/webapp/setup.py index 73f51c75ad6..6dc1e9a56f9 100644 --- a/src/webapp/setup.py +++ b/src/webapp/setup.py @@ -8,7 +8,7 @@ from codecs import open from setuptools import setup, find_packages -VERSION = "0.2.0" +VERSION = "0.2.1" CLASSIFIERS = [ 'Development Status :: 4 - Beta', @@ -36,6 +36,7 @@ author_email='sisirap@microsoft.com', url='https://github.com/Azure/azure-cli-extensions', classifiers=CLASSIFIERS, + package_data={'azext_webapp': ['azext_metadata.json']}, packages=find_packages(exclude=["tests"]), install_requires=DEPENDENCIES )