Skip to content

Commit

Permalink
Change dnc extension mode (#3568)
Browse files Browse the repository at this point in the history
* Change dnc extension mode

Change dnc extension mode from experimental to preview

* Update dnc extension version

* Update extension version in history and setup.py
* Change is_preview to true

Co-authored-by: Shriroop <shrjo@microsoft.com>
  • Loading branch information
shriroopjoshi and Shriroop committed Jul 5, 2021
1 parent 98288de commit 5380f93
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions src/dnc/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
Release History
===============

0.1.1
++++++
* Updated extension-mode to preview

0.1.0
++++++
* Initial release.
2 changes: 1 addition & 1 deletion src/dnc/azext_dnc/azext_metadata.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"azext.isExperimental": true,
"azext.isPreview": true,
"azext.minCliCoreVersion": "2.15.0"
}
2 changes: 1 addition & 1 deletion src/dnc/azext_dnc/generated/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion src/dnc/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 5380f93

Please sign in to comment.