diff --git a/src/automation/HISTORY.rst b/src/automation/HISTORY.rst index 54e332efde1..159f0fea45c 100644 --- a/src/automation/HISTORY.rst +++ b/src/automation/HISTORY.rst @@ -2,6 +2,9 @@ Release History =============== +0.2.2 +++++++ +* Updated create software update configuration cmdlet to address the bug to allow multiple values for classifications. 0.2.1 ++++++ diff --git a/src/automation/azext_automation/manual/_params.py b/src/automation/azext_automation/manual/_params.py index cf90be4586a..ad39e38ce18 100644 --- a/src/automation/azext_automation/manual/_params.py +++ b/src/automation/azext_automation/manual/_params.py @@ -162,7 +162,6 @@ def load_arguments(self, _): c.argument('operating_system', arg_type=get_enum_type(OperatingSystemType), help='Operating system of target machines.') c.argument('included_update_classifications', - arg_type=get_enum_type(WindowsUpdateClasses), help='Update classification included in the software update configuration.' ' A comma separated string with required values.') c.argument('excluded_kb_numbers', nargs='+', diff --git a/src/automation/setup.py b/src/automation/setup.py index d1ad108c545..8d48d5b50b8 100644 --- a/src/automation/setup.py +++ b/src/automation/setup.py @@ -10,7 +10,7 @@ from setuptools import setup, find_packages # HISTORY.rst entry. -VERSION = '0.2.1' +VERSION = '0.2.2' try: from azext_automation.manual.version import VERSION except ImportError: