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
16 changes: 8 additions & 8 deletions src/Maintenance/Maintenance/Az.Maintenance.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
# Generated on: 3/3/2020
# Generated on: 2020-04-14
#

@{
Expand All @@ -12,7 +12,7 @@
# RootModule = ''

# Version number of this module.
ModuleVersion = '0.1.3'
ModuleVersion = '1.0.0'

# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'
Expand Down Expand Up @@ -74,12 +74,12 @@ NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Maintenance.dll')
FunctionsToExport = @()

# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
CmdletsToExport = 'Get-AzApplyUpdate', 'Get-AzConfigurationAssignment',
'Get-AzMaintenanceConfiguration', 'Get-AzMaintenanceUpdate',
'New-AzApplyUpdate', 'New-AzConfigurationAssignment',
'New-AzMaintenanceConfiguration',
'Remove-AzConfigurationAssignment',
'Remove-AzMaintenanceConfiguration',
CmdletsToExport = 'Get-AzApplyUpdate', 'Get-AzConfigurationAssignment',
'Get-AzMaintenanceConfiguration', 'Get-AzMaintenanceUpdate',
'New-AzApplyUpdate', 'New-AzConfigurationAssignment',
'New-AzMaintenanceConfiguration',
'Remove-AzConfigurationAssignment',
'Remove-AzMaintenanceConfiguration',
'Update-AzMaintenanceConfiguration'

# Variables to export from this module
Expand Down
3 changes: 3 additions & 0 deletions src/Maintenance/Maintenance/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@

## Upcoming Release

## Version 1.0.0
* Publishing release version of Maintenance cmdlets for GA

## Version 0.1.3
* Got `Az-MaintenanceConfiguration` will honor filters while listing maintenance configurations

Expand Down
4 changes: 2 additions & 2 deletions src/Maintenance/Maintenance/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.0")]
[assembly: AssemblyVersion("0.1.3")]
[assembly: AssemblyFileVersion("0.1.3")]
[assembly: AssemblyVersion("1.0.0")]
[assembly: AssemblyFileVersion("1.0.0")]
1 change: 1 addition & 0 deletions tools/Az/Az.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; },
@{ModuleName = 'Az.IotHub'; RequiredVersion = '2.3.0'; },
@{ModuleName = 'Az.KeyVault'; RequiredVersion = '1.5.2'; },
@{ModuleName = 'Az.LogicApp'; RequiredVersion = '1.3.2'; },
@{ModuleName = 'Az.Maintenance'; RequiredVersion = '1.0.0'; },
@{ModuleName = 'Az.MachineLearning'; RequiredVersion = '1.1.3'; },
@{ModuleName = 'Az.ManagedServices'; RequiredVersion = '1.0.2'; },
@{ModuleName = 'Az.MarketplaceOrdering'; RequiredVersion = '1.0.2'; },
Expand Down
Loading