Skip to content

Commit 4f90ebe

Browse files
committed
Update change logs and release notes, bump module versions for 5.0.1 release
1 parent cbc3ffe commit 4f90ebe

File tree

70 files changed

+204
-364
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+204
-364
lines changed

ChangeLog.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,22 @@
1-
## 2017.11.8 - Version 5.0.0
1+
## 2017.11.10 Version 5.0.1
2+
* Fixed assembly loading issue that caused some cmdlets to fail when executing in the following modules:
3+
- AzureRM.ApiManagement
4+
- AzureRM.Backup
5+
- AzureRM.Batch
6+
- AzureRM.Compute
7+
- AzureRM.DataFactories
8+
- AzureRM.HDInsight
9+
- AzureRM.KeyVault
10+
- AzureRM.RecoveryServices
11+
- AzureRM.RecoveryServices.Backup
12+
- AzureRM.RecoveryServices.SiteRecovery
13+
- AzureRM.RedisCache
14+
- AzureRM.SiteRecovery
15+
- AzureRM.Sql
16+
- AzureRM.Storage
17+
- AzureRM.StreamAnalytics
18+
19+
## 2017.11.8 - Version 5.0.0
220
* NOTE: This is a breaking change release. Please see the migration guide (https://aka.ms/azps-migration-guide) for a full list of introduced breaking changes.
321
* All cmdlets in AzureRM now support online help
422
- Run Get-Help with the -Online parameter to open the online help in your default Internet browser

src/ResourceManager/ApiManagement/AzureRM.ApiManagement.psd1

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '5.0.0'
15+
ModuleVersion = '5.0.1'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()
@@ -190,16 +190,7 @@ PrivateData = @{
190190
# IconUri = ''
191191

192192
# ReleaseNotes of this module
193-
ReleaseNotes = '* NOTE: This is a breaking change release. Please see the migration guide (https://aka.ms/azps-migration-guide) for a full list of breaking changes introduced.
194-
* Breaking Changes in Cmdlet to Manage Api Management Users
195-
- New-AzureRmApiManagementUser Parameter `Password` is changed from String to SecureString
196-
- Set-AzureRmApiManagementBackend Parameter `Password` is changed from String to SecureString
197-
* Breaking Changes in Cmdlet to Create Backend Proxy Object
198-
- New-AzureRmApiManagementBackendProxy Parameter `Password` and `UserName` have been replaced with `ProxyCredentials` of type PSCredential
199-
* Updated Cmdlet Get-AzureRmApiManagementUser to fix issue https://github.com/Azure/azure-powershell/issues/4510
200-
* Updated Cmdlet New-AzureRmApiManagementApi to create Api with Empty Path https://github.com/Azure/azure-powershell/issues/4069
201-
* Add support for online help
202-
- Run Get-Help with the -Online parameter to open the online help in your default Internet browser'
193+
ReleaseNotes = '* Fixed assembly loading issue that caused some cmdlets to fail when executing'
203194

204195
# External dependent modules of this module
205196
# ExternalModuleDependencies = ''

src/ResourceManager/ApiManagement/ChangeLog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
-->
2020
## Current Release
2121

22+
## Version 5.0.1
23+
* Fixed assembly loading issue that caused some cmdlets to fail when executing
24+
2225
## Version 5.0.0
2326
* NOTE: This is a breaking change release. Please see the migration guide (https://aka.ms/azps-migration-guide) for a full list of breaking changes introduced.
2427
* Breaking Changes in Cmdlet to Manage Api Management Users

src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,5 @@
4242
// You can specify all the values or you can default the Build and Revision Numbers
4343
// by using the '*' as shown below:
4444

45-
[assembly: AssemblyVersion("5.0.0")]
46-
[assembly: AssemblyFileVersion("5.0.0")]
45+
[assembly: AssemblyVersion("5.0.1")]
46+
[assembly: AssemblyFileVersion("5.0.1")]

src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,5 @@
4141
// You can specify all the values or you can default the Build and Revision Numbers
4242
// by using the '*' as shown below:
4343

44-
[assembly: AssemblyVersion("5.0.0")]
45-
[assembly: AssemblyFileVersion("5.0.0")]
44+
[assembly: AssemblyVersion("5.0.1")]
45+
[assembly: AssemblyFileVersion("5.0.1")]

src/ResourceManager/ApiManagement/Commands.ApiManagement/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,5 @@
4141
// You can specify all the values or you can default the Build and Revision Numbers
4242
// by using the '*' as shown below:
4343

44-
[assembly: AssemblyVersion("5.0.0")]
45-
[assembly: AssemblyFileVersion("5.0.0")]
44+
[assembly: AssemblyVersion("5.0.1")]
45+
[assembly: AssemblyFileVersion("5.0.1")]

src/ResourceManager/ApiManagement/Commands.SMAPI.Test/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@
4242
// You can specify all the values or you can default the Build and Revision Numbers
4343
// by using the '*' as shown below:
4444

45-
[assembly: AssemblyVersion("5.0.0")]
46-
[assembly: AssemblyFileVersion("5.0.0")]
45+
[assembly: AssemblyVersion("5.0.1")]
46+
[assembly: AssemblyFileVersion("5.0.1")]
4747
[assembly: CollectionBehavior(DisableTestParallelization = true)]

src/ResourceManager/AzureBackup/AzureRM.Backup.psd1

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '4.0.0'
15+
ModuleVersion = '4.0.1'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()
@@ -54,8 +54,7 @@ CLRVersion = '4.0'
5454
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '4.0.0'; })
5555

5656
# Assemblies that must be loaded prior to importing this module
57-
RequiredAssemblies = '.\Microsoft.Azure.Commands.RecoveryServices.ARM.dll',
58-
'.\Microsoft.Azure.Management.BackupServicesManagement.dll',
57+
RequiredAssemblies = '.\Microsoft.Azure.Management.BackupServicesManagement.dll',
5958
'.\Microsoft.WindowsAzure.Management.Common.dll',
6059
'.\Microsoft.WindowsAzure.Management.Scheduler.dll',
6160
'.\Security.Cryptography.dll'
@@ -126,8 +125,7 @@ PrivateData = @{
126125
# IconUri = ''
127126

128127
# ReleaseNotes of this module
129-
ReleaseNotes = '* Add support for online help
130-
- Run Get-Help with the -Online parameter to open the online help in your default Internet browser'
128+
ReleaseNotes = '* Fixed assembly loading issue that caused some cmdlets to fail when executing'
131129

132130
# External dependent modules of this module
133131
# ExternalModuleDependencies = ''

src/ResourceManager/AzureBackup/ChangeLog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
-->
2020
## Current Release
2121

22+
## Version 4.0.1
23+
* Fixed assembly loading issue that caused some cmdlets to fail when executing
24+
2225
## Version 4.0.0
2326
* Add support for online help
2427
- Run Get-Help with the -Online parameter to open the online help in your default Internet browser

src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,6 @@
4646
// You can specify all the values or you can default the Build and Revision Numbers
4747
// by using the '*' as shown below:
4848

49-
[assembly: AssemblyVersion("4.0.0")]
50-
[assembly: AssemblyFileVersion("4.0.0")]
49+
[assembly: AssemblyVersion("4.0.1")]
50+
[assembly: AssemblyFileVersion("4.0.1")]
5151
[assembly: CollectionBehavior(DisableTestParallelization = true)]

src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
[assembly: ComVisible(false)]
3232
[assembly: CLSCompliant(false)]
3333

34-
[assembly: AssemblyVersion("4.0.0")]
35-
[assembly: AssemblyFileVersion("4.0.0")]
34+
[assembly: AssemblyVersion("4.0.1")]
35+
[assembly: AssemblyFileVersion("4.0.1")]

src/ResourceManager/AzureBatch/AzureRM.Batch.psd1

Lines changed: 2 additions & 60 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '4.0.0'
15+
ModuleVersion = '4.0.1'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()
@@ -148,65 +148,7 @@ PrivateData = @{
148148
# IconUri = ''
149149

150150
# ReleaseNotes of this module
151-
ReleaseNotes = '* NOTE: This is a breaking change release. Please see the migration guide (https://aka.ms/azps-migration-guide) for a full list of breaking changes introduced.
152-
* Added new parameters to `New-AzureRmBatchAccount`.
153-
- `PoolAllocationMode`: The allocation mode to use for creating pools in the Batch account. To create a Batch account which allocates pool nodes in the user''s subscription, set this to `UserSubscription`.
154-
- `KeyVaultId`: The resource ID of the Azure key vault associated with the Batch account.
155-
- `KeyVaultUrl`: The URL of the Azure key vault associated with the Batch account.
156-
* Updated parameters to `New-AzureBatchTask`.
157-
- Removed the `RunElevated` switch. The `UserIdentity` parameter has been added to replace `RunElevated`, and the equivalent behavior can be achieved by constructing a `PSUserIdentity` as shown below:
158-
- $autoUser = New-Object Microsoft.Azure.Commands.Batch.Models.PSAutoUserSpecification -ArgumentList @("Task", "Admin")
159-
- $userIdentity = New-Object Microsoft.Azure.Commands.Batch.Models.PSUserIdentity $autoUser
160-
- Added the `AuthenticationTokenSettings` parameter. This parameter allows you to request the Batch service provide an authentication token to the task when it runs, avoiding the need to pass Batch account keys to the task in order to issue requests to the Batch service.
161-
- Added the `ContainerSettings` parameter.
162-
- This parameter allows you to request the Batch service run the task inside a container.
163-
- Added the `OutputFiles` parameter.
164-
- This parameter allows you to configure the task to upload files to Azure Storage after it has finished.
165-
* Updated parameters to `New-AzureBatchPool`.
166-
- Added the `UserAccounts` parameter.
167-
- This parameter defines user accounts created on each node in the pool.
168-
- Added `TargetLowPriorityComputeNodes` and renamed `TargetDedicated` to `TargetDedicatedComputeNodes`.
169-
- A `TargetDedicated` alias was created for the `TargetDedicatedComputeNodes` parameter.
170-
- Added the `NetworkConfiguration` parameter.
171-
- This parameter allows you to configure the pools network settings.
172-
* Updated parameters to `New-AzureBatchCertificate`.
173-
- The `Password` parameter is now a `SecureString`.
174-
* Updated parameters to `New-AzureBatchComputeNodeUser`.
175-
- The `Password` parameter is now a `SecureString`.
176-
* Updated parameters to `Set-AzureBatchComputeNodeUser`.
177-
- The `Password` parameter is now a `SecureString`.
178-
* Renamed the `Name` parameter to `Path` on `Get-AzureBatchNodeFile`, `Get-AzureBatchNodeFileContent`, and `Remove-AzureBatchNodeFile`.
179-
- A `Name` alias was created for the `Path` parameter.
180-
* Changes to objects:
181-
- Removed the `RunElevated` property on `PSCloudTask`, `PSStartTask`, `PSJobManagerTask`, `PSJobPreparationTask`, and `PSJobReleaseTask`. The `UserIdentity` property has been added to replace `RunElevated`. Equivalent behavior to `RunElevated = $true` can be achieved by constructing a `PSUserIdentity` as shown below:
182-
- $autoUser = New-Object Microsoft.Azure.Commands.Batch.Models.PSAutoUserSpecification -ArgumentList @("Task", "Admin")
183-
- $userIdentity = New-Object Microsoft.Azure.Commands.Batch.Models.PSUserIdentity $autoUser
184-
- Added the `AuthenticationTokenSettings` property to `PSCloudTask` and `PSJobManagerTask`.
185-
- Added the `OutputFiles` property to `PSCloudTask`, and `PSJobManagerTask`.
186-
- Added the `ContainerSettings` property to `PSCloudTask`, `PSStartTask`, `PSJobManagerTask`, `PSJobPreparationTask`, and `PSJobReleaseTask`.
187-
- Added the `AllowLowPriorityNode` property to `PSJobManagerTask`.
188-
- Renamed the `SchedulingError` property on `PSJobPreparationTaskExecutionInformation`, `PSJobReleaseTaskExecutionInformation`, `PSStartTaskInformation`, `PSSubtaskInformation`, and `PSTaskExecutionInformation` to `FailureInformation`.
189-
- `FailureInformation` is returned any time there is a task failure. This includes all previous scheduling error cases, as well as nonzero task exit codes, and file upload failures from the new output files feature.
190-
- Renamed `PSTaskSchedulingError` to `PSTaskFailureInformation`.
191-
- Added the `ContainerInformation` and `Result` properties to `PSJobPreparationTaskExecutionInformation`, `PSJobReleaseTaskExecutionInformation`, `PSStartTaskInformation`, `PSSubtaskInformation`, and `PSTaskExecutionInformation`.
192-
- Added the `UserAccounts` property to `PSCloudPool` and `PSPoolSpecification`.
193-
- Added the `TargetLowPriorityComputeNodes` property to `PSCloudPool` and `PSPoolSpecification`, and renamed `TargetDedicated` to `TargetDedicatedComputeNodes`.
194-
- Renamed the `Name` property on `PSNodeFile` to `Path`.
195-
- Added the `EndpointConfiguration` and `IsDedicated` property to `PSComputeNode`.
196-
- Renamed the `SchedulingError` property on `PSExitConditions` to `PreProcessingError`.
197-
- Added the `FileUploadError` to `PSExitConditions`.
198-
- Added the `DependencyAction` property to `PSExitOptions`.
199-
- Added the `OSDisk`, `ContainerConfiguration`, `DataDisks`, and `LicenseType` properties to `PSVirtualMachineConfiguration`.
200-
- Added the `VirtualMachineImageId` property to `PSImageReference`. Note that in order to allow deploying nodes using custom VHDs, the `BatchAccountContext` must be using Azure Active Directory authentication.
201-
- Added the `OnAllTasksComplete` and `OnTaskFailure` properties to `PSJobSpecification`.
202-
- Added the `EndpointConfiguration` property to `PSNetworkConfiguration`.
203-
- Renamed `ResizeError` to `ResizeErrors` on `PSCloudPool`, and it is now a collection.
204-
- `PSMultiInstanceSettings` constructor no longer takes a required `numberOfInstances` parameter, instead it takes a required `coordinationCommandLine` parameter.
205-
* Added support for Azure Active Directory based authentication.
206-
- To use Azure Active Directory authentication, retrieve a `BatchAccountContext` object using the `Get-AzureRmBatchAccount` cmdlet, and supply this `BatchAccountContext` to the `-BatchContext` parameter of a Batch service cmdlet. Azure Active Directory authentication is mandatory for accounts with `PoolAllocationMode = UserSubscription`.
207-
- For existing accounts or for new accounts created with `PoolAllocationMode = BatchService`, you may continue to use shared key authentication by retrieving a `BatchAccountContext` object using the `Get-AzureRmBatchAccoutKeys` cmdlet.
208-
* Add support for online help
209-
- Run Get-Help with the -Online parameter to open the online help in your default Internet browser'
151+
ReleaseNotes = '* Fixed assembly loading issue that caused some cmdlets to fail when executing'
210152

211153
# External dependent modules of this module
212154
# ExternalModuleDependencies = ''

src/ResourceManager/AzureBatch/ChangeLog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
-->
2020
## Current Release
2121

22+
## Version 4.0.1
23+
* Fixed assembly loading issue that caused some cmdlets to fail when executing
24+
2225
## Version 4.0.0
2326
* NOTE: This is a breaking change release. Please see the migration guide (https://aka.ms/azps-migration-guide) for a full list of breaking changes introduced.
2427
* Added new parameters to `New-AzureRmBatchAccount`.

src/ResourceManager/AzureBatch/Commands.Batch.Test/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@
3333
// You can specify all the values or you can default the Build and Revision Numbers
3434
// by using the '*' as shown below:
3535

36-
[assembly: AssemblyVersion("4.0.0")]
37-
[assembly: AssemblyFileVersion("4.0.0")]
36+
[assembly: AssemblyVersion("4.0.1")]
37+
[assembly: AssemblyFileVersion("4.0.1")]
3838
[assembly: CollectionBehavior(DisableTestParallelization = true)]

src/ResourceManager/AzureBatch/Commands.Batch/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
[assembly: ComVisible(false)]
2626
[assembly: CLSCompliant(false)]
2727
[assembly: Guid("ed102280-3577-49bf-93dd-11b6e3a44a57")]
28-
[assembly: AssemblyVersion("4.0.0")]
29-
[assembly: AssemblyFileVersion("4.0.0")]
28+
[assembly: AssemblyVersion("4.0.1")]
29+
[assembly: AssemblyFileVersion("4.0.1")]
3030
#if SIGN
3131
[assembly: InternalsVisibleTo("Microsoft.Azure.Commands.Batch.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")]
3232
#else

src/ResourceManager/Compute/AzureRM.Compute.psd1

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '4.0.0'
15+
ModuleVersion = '4.0.1'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()
@@ -212,13 +212,7 @@ PrivateData = @{
212212
# IconUri = ''
213213

214214
# ReleaseNotes of this module
215-
ReleaseNotes = '* Azure Disk Encryption Extension Commands
216-
- New Parameter for ''Set-AzureRmVmDiskEncryptionExtension'': ''-EncryptFormatAll'' encrypt formats data disks
217-
- New Parameters for ''Set-AzureRmVmDiskEncryptionExtension'': ''-ExtensionPublisherName'' and ''-ExtensionType'' allow switching to other versions of the extension
218-
- New Parameters for ''Disable-AzureRmVmDiskEncryption'': ''-ExtensionPublisherName'' and ''-ExtensionType'' allow switching to other versions of the extension
219-
- New Parameters for ''Get-AzureRmVmDiskEncryptionStatus'': ''-ExtensionPublisherName'' and ''-ExtensionType'' allow switching to other versions of the extension\
220-
* Add support for online help
221-
- Run Get-Help with the -Online parameter to open the online help in your default Internet browser'
215+
ReleaseNotes = '* Fixed assembly loading issue that caused some cmdlets to fail when executing'
222216

223217
# External dependent modules of this module
224218
# ExternalModuleDependencies = ''

src/ResourceManager/Compute/ChangeLog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
-->
2020
## Current Release
2121

22+
## Version 4.0.1
23+
* Fixed assembly loading issue that caused some cmdlets to fail when executing
24+
2225
## Version 4.0.0
2326
* Azure Disk Encryption Extension Commands
2427
- New Parameter for 'Set-AzureRmVmDiskEncryptionExtension': '-EncryptFormatAll' encrypt formats data disks

src/ResourceManager/Compute/Commands.Compute.Test/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@
3232

3333
[assembly: Guid("28fe3fc0-6fdf-4f01-8a82-d7b4a834ddd2")]
3434

35-
[assembly: AssemblyVersion("4.0.0")]
36-
[assembly: AssemblyFileVersion("4.0.0")]
35+
[assembly: AssemblyVersion("4.0.1")]
36+
[assembly: AssemblyFileVersion("4.0.1")]
3737
[assembly: CollectionBehavior(DisableTestParallelization = true)]

src/ResourceManager/Compute/Commands.Compute/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
[assembly: ComVisible(false)]
2626
[assembly: CLSCompliant(false)]
2727
[assembly: Guid("91792853-487B-4DC2-BE6C-DD09A0A1BC10")]
28-
[assembly: AssemblyVersion("4.0.0")]
29-
[assembly: AssemblyFileVersion("4.0.0")]
28+
[assembly: AssemblyVersion("4.0.1")]
29+
[assembly: AssemblyFileVersion("4.0.1")]
3030
#if SIGN
3131
[assembly: InternalsVisibleTo("Microsoft.Azure.Commands.Compute.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")]
3232
#else

src/ResourceManager/DataFactories/AzureRM.DataFactories.psd1

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '4.0.0'
15+
ModuleVersion = '4.0.1'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()
@@ -135,8 +135,7 @@ PrivateData = @{
135135
# IconUri = ''
136136

137137
# ReleaseNotes of this module
138-
ReleaseNotes = '* Add support for online help
139-
- Run Get-Help with the -Online parameter to open the online help in your default Internet browser'
138+
ReleaseNotes = '* Fixed assembly loading issue that caused some cmdlets to fail when executing'
140139

141140
# External dependent modules of this module
142141
# ExternalModuleDependencies = ''

src/ResourceManager/DataFactories/ChangeLog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
-->
2020
## Current Release
2121

22+
## Version 4.0.1
23+
* Fixed assembly loading issue that caused some cmdlets to fail when executing
24+
2225
## Version 4.0.0
2326
* Add support for online help
2427
- Run Get-Help with the -Online parameter to open the online help in your default Internet browser

src/ResourceManager/DataFactories/Commands.DataFactories.Test/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@
3232

3333
[assembly: Guid("8E86B542-B22F-44B6-8053-3F5118E04DEA")]
3434

35-
[assembly: AssemblyVersion("0.3.0")]
36-
[assembly: AssemblyFileVersion("0.3.0")]
35+
[assembly: AssemblyVersion("4.0.1")]
36+
[assembly: AssemblyFileVersion("4.0.1")]
3737
[assembly: CollectionBehavior(DisableTestParallelization = true)]

src/ResourceManager/DataFactories/Commands.DataFactories/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
[assembly: ComVisible(false)]
2626
[assembly: CLSCompliant(false)]
2727
[assembly: Guid("5d024af0-81c9-44f0-b3b0-7080f103fb4d")]
28-
[assembly: AssemblyVersion("0.3.0")]
29-
[assembly: AssemblyFileVersion("0.3.0")]
28+
[assembly: AssemblyVersion("4.0.1")]
29+
[assembly: AssemblyFileVersion("4.0.1")]
3030
#if SIGN
3131
[assembly: InternalsVisibleTo("Microsoft.Azure.Commands.DataFactories.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")]
3232
#else

src/ResourceManager/HDInsight/AzureRM.HDInsight.psd1

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '4.0.0'
15+
ModuleVersion = '4.0.1'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()
@@ -143,8 +143,7 @@ PrivateData = @{
143143
# IconUri = ''
144144

145145
# ReleaseNotes of this module
146-
ReleaseNotes = '* Add support for online help
147-
- Run Get-Help with the -Online parameter to open the online help in your default Internet browser'
146+
ReleaseNotes = '* Fixed assembly loading issue that caused some cmdlets to fail when executing'
148147

149148
# External dependent modules of this module
150149
# ExternalModuleDependencies = ''

0 commit comments

Comments
 (0)