diff --git a/src/dnc/HISTORY.rst b/src/dnc/HISTORY.rst index 1c139576ba0..0942adbdddd 100644 --- a/src/dnc/HISTORY.rst +++ b/src/dnc/HISTORY.rst @@ -3,6 +3,10 @@ Release History =============== +0.1.1 +++++++ +* Updated extension-mode to preview + 0.1.0 ++++++ * Initial release. diff --git a/src/dnc/azext_dnc/azext_metadata.json b/src/dnc/azext_dnc/azext_metadata.json index cfc30c747c7..30fdaf614ee 100644 --- a/src/dnc/azext_dnc/azext_metadata.json +++ b/src/dnc/azext_dnc/azext_metadata.json @@ -1,4 +1,4 @@ { - "azext.isExperimental": true, + "azext.isPreview": true, "azext.minCliCoreVersion": "2.15.0" } \ No newline at end of file diff --git a/src/dnc/azext_dnc/generated/commands.py b/src/dnc/azext_dnc/generated/commands.py index 2784ab57041..61ad2fba0ad 100644 --- a/src/dnc/azext_dnc/generated/commands.py +++ b/src/dnc/azext_dnc/generated/commands.py @@ -60,5 +60,5 @@ def load_command_table(self, _): g.custom_command('delete', 'dnc_delegated_subnet_service_delete', supports_no_wait=True, confirmation=True) g.custom_wait_command('wait', 'dnc_delegated_subnet_service_show') - with self.command_group('dnc', is_experimental=True): + with self.command_group('dnc', is_preview=True): pass diff --git a/src/dnc/setup.py b/src/dnc/setup.py index 71d89822c42..ec960229622 100644 --- a/src/dnc/setup.py +++ b/src/dnc/setup.py @@ -10,7 +10,7 @@ from setuptools import setup, find_packages # HISTORY.rst entry. -VERSION = '0.1.0' +VERSION = '0.1.1' try: from azext_dnc.manual.version import VERSION except ImportError: