Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/automation/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
++++++
Expand Down
1 change: 0 additions & 1 deletion src/automation/azext_automation/manual/_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -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='+',
Expand Down
2 changes: 1 addition & 1 deletion src/automation/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.2.1'
VERSION = '0.2.2'
try:
from azext_automation.manual.version import VERSION
except ImportError:
Expand Down