Skip to content

Commit 5380f93

Browse files
shriroopjoshiShriroop
andauthored
Change dnc extension mode (Azure#3568)
* 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>
1 parent 98288de commit 5380f93

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

src/dnc/HISTORY.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
Release History
44
===============
55

6+
0.1.1
7+
++++++
8+
* Updated extension-mode to preview
9+
610
0.1.0
711
++++++
812
* Initial release.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"azext.isExperimental": true,
2+
"azext.isPreview": true,
33
"azext.minCliCoreVersion": "2.15.0"
44
}

src/dnc/azext_dnc/generated/commands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,5 +60,5 @@ def load_command_table(self, _):
6060
g.custom_command('delete', 'dnc_delegated_subnet_service_delete', supports_no_wait=True, confirmation=True)
6161
g.custom_wait_command('wait', 'dnc_delegated_subnet_service_show')
6262

63-
with self.command_group('dnc', is_experimental=True):
63+
with self.command_group('dnc', is_preview=True):
6464
pass

src/dnc/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from setuptools import setup, find_packages
1111

1212
# HISTORY.rst entry.
13-
VERSION = '0.1.0'
13+
VERSION = '0.1.1'
1414
try:
1515
from azext_dnc.manual.version import VERSION
1616
except ImportError:

0 commit comments

Comments
 (0)