Skip to content

Commit 9d41a39

Browse files
authored
bump up version; fix in custom (#15435)
1 parent ca7a942 commit 9d41a39

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

src/CloudService/Az.CloudService.psd1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 7/8/2021
6+
# Generated on: 2021/7/8
77
#
88

99
@{
@@ -12,7 +12,7 @@
1212
RootModule = './Az.CloudService.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '0.3.0'
15+
ModuleVersion = '0.4.0'
1616

1717
# Supported PSEditions
1818
CompatiblePSEditions = 'Core', 'Desktop'
@@ -127,7 +127,7 @@ PrivateData = @{
127127
# IconUri = ''
128128

129129
# ReleaseNotes of this module
130-
# ReleaseNotes = ''
130+
ReleaseNotes = '* Introduced 2 additional parameter sets for ''New-AzCloudService''.'
131131

132132
# Prerelease string of this module
133133
# Prerelease = ''

src/CloudService/Changelog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
- Additional information about change #1
1919
-->
2020
## Upcoming Release
21+
22+
## Version 0.4.0
2123
* Introduced 2 additional parameter sets for `New-AzCloudService`.
2224

2325
## Version 0.3.0

src/CloudService/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@
2424
[assembly: ComVisible(false)]
2525
[assembly: CLSCompliant(false)]
2626
[assembly: Guid("1fe4b4c7-44d2-4800-a935-733381e663ae")]
27-
[assembly: AssemblyVersion("0.3.0")]
28-
[assembly: AssemblyFileVersion("0.3.0")]
27+
[assembly: AssemblyVersion("0.4.0")]
28+
[assembly: AssemblyFileVersion("0.4.0")]

src/CloudService/custom/New-AzCloudService.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ function New-AzCloudService {
327327

328328
# Perform action
329329
Write-Host("Creating the Cloud Service resource.")
330-
Az.CloudService.internal\New-AzCloudService @PSBoundParameters
330+
Az.CloudService\New-AzCloudService @PSBoundParameters
331331
}
332332

333333
}
@@ -642,4 +642,4 @@ function validation
642642
throw "The provided Storage Account: '" + $storageAccount + "' does not exist."
643643
}
644644
}
645-
}
645+
}

0 commit comments

Comments
 (0)