diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c13a8c..cd2a489 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ BUG FIXES: + * Fix - Shim argument parsing needs fixed for quoting - [ShimGen #1](https://github.com/chocolatey/shimgen/issues/1) * Fix - Forcing x86 does not use 32bit checksum - [#535](https://github.com/chocolatey/chocolatey/issues/535) * Fix - Powershell v2 fails to download SSLv3 files - [#531](https://github.com/chocolatey/chocolatey/issues/531) diff --git a/nuget/chocolatey.nuspec b/nuget/chocolatey.nuspec index 60b8048..12a7341 100644 --- a/nuget/chocolatey.nuspec +++ b/nuget/chocolatey.nuspec @@ -3,7 +3,7 @@ chocolatey Chocolatey - 0.9.8.28-alpha2 + 0.9.8.28-alpha3 Rob Reynolds, The Chocolatey Team Rob Reynolds Chocolatey is your machine level NuGet repository. Think apt-get for Windows (executables/application packages), not library packages. @@ -45,6 +45,7 @@ See all - https://github.com/chocolatey/chocolatey/blob/master/CHANGELOG.md ### BUG FIXES: + * Fix - Shim argument parsing needs fixed for quoting - https://github.com/chocolatey/shimgen/issues/1 * Fix - Forcing x86 does not use 32bit checksum - https://github.com/chocolatey/chocolatey/issues/535 * Fix - Powershell v2 fails to download SSLv3 files - https://github.com/chocolatey/chocolatey/issues/531 diff --git a/src/chocolatey.ps1 b/src/chocolatey.ps1 index 6a10f15..7f86a12 100644 --- a/src/chocolatey.ps1 +++ b/src/chocolatey.ps1 @@ -44,7 +44,7 @@ $currentThread.CurrentCulture = $culture; $currentThread.CurrentUICulture = $culture; #Let's get Chocolatey! -$chocVer = '0.9.8.28-alpha2' +$chocVer = '0.9.8.28-alpha3' $nugetChocolateyPath = (Split-Path -parent $MyInvocation.MyCommand.Definition) $nugetPath = (Split-Path -Parent $nugetChocolateyPath) $nugetExePath = Join-Path $nuGetPath 'bin' diff --git a/src/tools/shimgen.exe b/src/tools/shimgen.exe index e6b64c7..14d8a1c 100644 Binary files a/src/tools/shimgen.exe and b/src/tools/shimgen.exe differ