Skip to content

Commit 19d1588

Browse files
author
maddieclayton
committed
fix error and update version
1 parent 0da722d commit 19d1588

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

src/ResourceManager/KeyVault/AzureRM.KeyVault.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '4.3.0'
15+
ModuleVersion = '4.4.0'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()

src/ResourceManager/KeyVault/ChangeLog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
-->
2020
## Current Release
2121

22-
## Version 4.3.0
22+
## Version 4.4.0-preview
2323
* Updated cmdlets to include piping scenarios
2424
* Added new cmdlets around NewtorkRules: Add/Remove/Update-AzureKeyVaultNetworkRule
2525
* Added new cmdlets: Backup/Restore-AzureKeyVaultManagedStorageAccount, Backup/Restore-AzureKeyVaultCertificate, Undo-AzureKeyVaultManagedStorageSasDefinitionRemoval, and Undo-AzureKeyVaultManagedStorageAccountRemoval

src/ResourceManager/KeyVault/Commands.KeyVault/Models/PSKeyVaultCertificate.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ internal PSKeyVaultCertificate(CertificateBundle certificateBundle, VaultUriHelp
7474

7575
if ( certificateBundle.Tags != null )
7676
{
77-
Tags = (Hashtable) certificateBundle.Tags;
77+
Tags = (certificateBundle.Tags == null) ? null : certificateBundle.Tags.ConvertToHashtable();
7878
}
7979
}
8080

@@ -127,7 +127,7 @@ internal PSKeyVaultCertificate(CertificateBundle certificateBundle)
127127

128128
if (certificateBundle.Tags != null)
129129
{
130-
Tags = (Hashtable)certificateBundle.Tags;
130+
Tags = (certificateBundle.Tags == null) ? null : certificateBundle.Tags.ConvertToHashtable();
131131
}
132132
}
133133

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
[assembly: CLSCompliant(false)]
3030

3131
[assembly: Guid("2994548F-69B9-4DC2-8D19-52CC0C0C85BC")]
32-
[assembly: AssemblyVersion("4.3.0")]
33-
[assembly: AssemblyFileVersion("4.3.0")]
32+
[assembly: AssemblyVersion("4.4.0")]
33+
[assembly: AssemblyFileVersion("4.4.0")]
3434
#if SIGN
3535
[assembly: InternalsVisibleTo("Microsoft.Azure.Commands.KeyVault.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")]
3636
#else

0 commit comments

Comments
 (0)