diff --git a/README.md b/README.md index b2c867b82..2c763ddba 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,12 @@ The cases of every file is very important. This module is to be used on Windows, ## Release Notes +### 3.0.3 + +Merged [Pull Request](https://github.com/DarqueWarrior/vsteam/pull/66) from [Kai Walter](https://github.com/KaiWalter) which included the following: + +Updated integration tests to account for the new hosted agent pool. + ### 3.0.2 Added Get-VSTeamGitRef to retrieve the branches for adding Pull Request support in the future. diff --git a/VSTeam.psd1 b/VSTeam.psd1 index d2e79b865..ff6738bd4 100644 --- a/VSTeam.psd1 +++ b/VSTeam.psd1 @@ -13,7 +13,7 @@ RootModule = '' # Version number of this module. - ModuleVersion = '3.0.2' + ModuleVersion = '3.0.3' # Supported PSEditions # CompatiblePSEditions = @() diff --git a/integration/test/010_projects.Tests.ps1 b/integration/test/010_projects.Tests.ps1 index 46c57da7f..914c0f41c 100644 --- a/integration/test/010_projects.Tests.ps1 +++ b/integration/test/010_projects.Tests.ps1 @@ -162,7 +162,7 @@ Describe 'VSTeam Integration Tests' -Tag 'integration' { $actual.name | Should Be 'Default' } else { - $actual.Count | Should Be 5 + $actual.Count | Should Be 6 } } } @@ -177,7 +177,7 @@ Describe 'VSTeam Integration Tests' -Tag 'integration' { } else { $global:queueId = $actual[0].id - $actual.Count | Should Be 5 + $actual.Count | Should Be 6 } } @@ -234,7 +234,7 @@ Describe 'VSTeam Integration Tests' -Tag 'integration' { # Not supported on TFS 2017 if ($api -ne 'TFS2017') { - It 'Add-VSTeamServiceFabricEndpoint Should add servcie endpoint' { + It 'Add-VSTeamServiceFabricEndpoint Should add service endpoint' { { Add-VSTeamServiceFabricEndpoint -ProjectName $newProjectName -endpointName 'ServiceFabricTestEndoint' ` -url "tcp://10.0.0.1:19000" -useWindowsSecurity $false } | Should Not Be $null }