diff --git a/src/nginx/HISTORY.rst b/src/nginx/HISTORY.rst index cd9fda9cbb4..ad03a005d73 100644 --- a/src/nginx/HISTORY.rst +++ b/src/nginx/HISTORY.rst @@ -3,6 +3,10 @@ Release History =============== +2.0.0 +++++++ +* General Availability for Web Application Firewall (WAF) v2 with static analysis. + 2.0.0b11 ++++++ * Added support for WAF v2 analysis. diff --git a/src/nginx/azext_nginx/azext_metadata.json b/src/nginx/azext_nginx/azext_metadata.json index 71889bb136b..3b228c83dd2 100644 --- a/src/nginx/azext_nginx/azext_metadata.json +++ b/src/nginx/azext_nginx/azext_metadata.json @@ -1,4 +1,4 @@ { - "azext.isPreview": true, + "azext.isPreview": false, "azext.minCliCoreVersion": "2.75.0" } \ No newline at end of file diff --git a/src/nginx/setup.py b/src/nginx/setup.py index b967e44aec4..626c9cc4d50 100644 --- a/src/nginx/setup.py +++ b/src/nginx/setup.py @@ -16,12 +16,12 @@ # TODO: Confirm this is the right version number you want and it matches your # HISTORY.rst entry. -VERSION = '2.0.0b11' +VERSION = '2.0.0' # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers CLASSIFIERS = [ - 'Development Status :: 4 - Beta', + 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'Intended Audience :: System Administrators', 'Programming Language :: Python', @@ -29,6 +29,11 @@ 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', + 'Programming Language :: Python :: 3.13', 'License :: OSI Approved :: MIT License', ]