diff --git a/src/webpubsub/HISTORY.rst b/src/webpubsub/HISTORY.rst index 0e9c3af3f7a..964b47d5336 100644 --- a/src/webpubsub/HISTORY.rst +++ b/src/webpubsub/HISTORY.rst @@ -3,6 +3,12 @@ Release History =============== +1.2.0 ++++++ +* Drop python 3.6 support +* Update websocket dependency version +* Remove hard limit of sku + 1.1.0 ++++++ * Add `az webpubsub list-usage` diff --git a/src/webpubsub/azext_webpubsub/azext_metadata.json b/src/webpubsub/azext_webpubsub/azext_metadata.json index e5d473957e0..b729b1c8503 100644 --- a/src/webpubsub/azext_webpubsub/azext_metadata.json +++ b/src/webpubsub/azext_webpubsub/azext_metadata.json @@ -1,4 +1,4 @@ { "azext.isPreview": false, - "azext.minCliCoreVersion": "2.22.0" + "azext.minCliCoreVersion": "2.39.0" } \ No newline at end of file diff --git a/src/webpubsub/setup.py b/src/webpubsub/setup.py index 0429389e714..420b07586dc 100644 --- a/src/webpubsub/setup.py +++ b/src/webpubsub/setup.py @@ -16,7 +16,7 @@ # TODO: Confirm this is the right version number you want and it matches your # HISTORY.rst entry. -VERSION = '1.1.0' +VERSION = '1.2.0' # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers @@ -26,7 +26,6 @@ 'Intended Audience :: System Administrators', 'Programming Language :: Python', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'License :: OSI Approved :: MIT License', @@ -34,7 +33,7 @@ # TODO: Add any additional SDK dependencies here DEPENDENCIES = [ - 'websockets>=8.1' + 'websockets~=10.4' ] with open('README.rst', 'r', encoding='utf-8') as f: