Skip to content

Commit

Permalink
Bump to 4.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nohwnd committed Dec 9, 2017
1 parent 9f6d8ea commit 7c8a7f9
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 4.1.1 (December 09, 2017)
- Fix deployment scripts and package on choco and nuget

## 4.1.0 (November 15, 2017)
- Help for the Assert-VerifiableMocks function added [GH-883]
- Add-AssertionOperator can be called multiple times for identical parameters without errors. [GH-893]
Expand Down
4 changes: 2 additions & 2 deletions Pester.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
ModuleToProcess = 'Pester.psm1'

# Version number of this module.
ModuleVersion = '4.1.0'
ModuleVersion = '4.1.1'

# ID used to uniquely identify this module
GUID = 'a699dea5-2c73-4616-a270-1f7abb777e71'
Expand Down Expand Up @@ -122,7 +122,7 @@ PrivateData = @{
LicenseUri = "https://www.apache.org/licenses/LICENSE-2.0.html"

# Release notes for this particular version of the module
ReleaseNotes = 'https://github.com/pester/Pester/releases/tag/4.1.0'
ReleaseNotes = 'https://github.com/pester/Pester/releases/tag/4.1.1'

# If true, the LicenseUrl points to an end-user license (not just a source license) which requires the user agreement before use.
# RequireLicenseAcceptance = ""
Expand Down
8 changes: 7 additions & 1 deletion getNugetExe.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ try
# so I try to run it first and if that does not work
# I download a version from the web and try that

$nugetPath = "$PSScriptRoot\vendor\tools\nuget.exe"
$nugetPath = "$psScriptRoot\vendor\tools\nuget.exe"
Write-Host Nuget path $nugetPath

$nugetFound = Test-Path $nugetPath
if ($nugetFound) {
Expand All @@ -27,6 +28,11 @@ try
}

if (-not $nugetFound -or -not $nugetRunnable) {
$vendorDirectory = $nugetPath | Split-Path
if (-not(Test-Path $VendorDirectory)) {
mkdir $vendorDirectory
}

Invoke-WebRequest -Uri "https://dist.nuget.org/win-x86-commandline/v4.4.1/nuget.exe" -OutFile $nugetPath -Verbose
"Downloaded $(&$nugetPath | select -First 1)"
}
Expand Down
Binary file added vendor/tools/nuget.exe
Binary file not shown.

0 comments on commit 7c8a7f9

Please sign in to comment.