Skip to content

Commit 2fd36b4

Browse files
Merge pull request #280 from JulianHayward/6.6.2
6.6.2 azAPICallBeta option
2 parents 896e555 + ea4172e commit 2fd36b4

3 files changed

Lines changed: 11 additions & 5 deletions

File tree

pwsh/AzGovVizParallel.ps1

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -371,12 +371,15 @@ Param
371371
$Product = 'AzGovViz',
372372

373373
[string]
374-
$ProductVersion = '6.6.1',
374+
$ProductVersion = '6.6.2',
375375

376376
[string]
377377
$GithubRepository = 'aka.ms/AzGovViz',
378378

379379
# <--- AzAPICall related parameters #consult the AzAPICall GitHub repository for details aka.ms/AzAPICall
380+
[string]
381+
[ValidateSet('AzAPICall', 'AzAPICallBeta')]$AzAPICallModuleName = 'AzAPICall',
382+
380383
[string]
381384
$AzAPICallVersion = '1.2.4',
382385

@@ -35398,7 +35401,7 @@ if ($DoPSRule) {
3539835401
#region verifyModules3rd
3539935402
$modules = [System.Collections.ArrayList]@()
3540035403
$null = $modules.Add([PSCustomObject]@{
35401-
ModuleName = 'AzAPICall'
35404+
ModuleName = $AzAPICallModuleName
3540235405
ModuleVersion = $AzAPICallVersion
3540335406
ModuleProductName = 'AzAPICall'
3540435407
ModulePathPipeline = 'AzAPICallModule'

pwsh/dev/devAzGovVizParallel.ps1

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -371,12 +371,15 @@ Param
371371
$Product = 'AzGovViz',
372372

373373
[string]
374-
$ProductVersion = '6.6.1',
374+
$ProductVersion = '6.6.2',
375375

376376
[string]
377377
$GithubRepository = 'aka.ms/AzGovViz',
378378

379379
# <--- AzAPICall related parameters #consult the AzAPICall GitHub repository for details aka.ms/AzAPICall
380+
[string]
381+
[ValidateSet('AzAPICall', 'AzAPICallBeta')]$AzAPICallModuleName = 'AzAPICall',
382+
380383
[string]
381384
$AzAPICallVersion = '1.2.4',
382385

@@ -786,7 +789,7 @@ if ($DoPSRule) {
786789
#region verifyModules3rd
787790
$modules = [System.Collections.ArrayList]@()
788791
$null = $modules.Add([PSCustomObject]@{
789-
ModuleName = 'AzAPICall'
792+
ModuleName = $AzAPICallModuleName
790793
ModuleVersion = $AzAPICallVersion
791794
ModuleProductName = 'AzAPICall'
792795
ModulePathPipeline = 'AzAPICallModule'

version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"ProductVersion": "6.6.1"
2+
"ProductVersion": "6.6.2"
33
}

0 commit comments

Comments
 (0)