Skip to content

Commit

Permalink
Merge branch 'stable'
Browse files Browse the repository at this point in the history
* stable:
  (version) 0.9.9.2
  (doc) update changelog/nuspec
  (GH-142) shimgen - write errors to stderr
  (GH-150) Fix: InstallArguments is broken
  • Loading branch information
ferventcoder committed Mar 7, 2015
2 parents 33cf250 + 1d88b85 commit 9fd1a79
Show file tree
Hide file tree
Showing 14 changed files with 39 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .uppercut
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<property name="version.major" value="0" overwrite="false" />
<property name="version.minor" value="9" overwrite="false" />
<property name="version.patch" value="9" overwrite="false" />
<property name="version.fix" value="1" overwrite="false" />
<property name="version.fix" value="2" overwrite="false" />
<property name="version.nuget.prerelease" value="" overwrite="false" />
<property name="version.use.build_date" value="false" overwrite="false" />
<property name="assembly.description" value="${project.name} is a product of ${company.name} - All Rights Reserved." overwrite="false" />
Expand Down
20 changes: 19 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,22 @@
## [0.9.9](https://github.com/chocolatey/choco/issues?q=is%3Aissue+milestone%3A0.9.9+is%3Aclosed) (March 3, 2015)
## [0.9.9.2](https://github.com/chocolatey/choco/issues?q=milestone%3A0.9.9.2+is%3Aclosed) (March 6, 2015)

### BUG FIXES

* Fix - Allow passing install arguments again (regression in 0.9.9 series) - see [#150](https://github.com/chocolatey/choco/issues/150)
* Fix - Allow apostrophes to be used as quotes - quoting style that worked with previous client - see [#141](https://github.com/chocolatey/choco/issues/141)
* Fix - Shims write errors to stderr - see [#142](https://github.com/chocolatey/choco/issues/142) and [ShimGen #14](https://github.com/chocolatey/shimgen/issues/14)

### IMPROVEMENTS

* Upgrade `-r` should always return a value - see [#153](https://github.com/chocolatey/choco/issues/153)

## [0.9.9.1](https://github.com/chocolatey/choco/issues?q=milestone%3A0.9.9.1+is%3Aclosed) (March 3, 2015)

### BUG FIXES

* Fix - Get-BinRoot broken - see [#144](https://github.com/chocolatey/choco/issues/144)

## [0.9.9](https://github.com/chocolatey/choco/issues?q=milestone%3A0.9.9+is%3Aclosed) (March 3, 2015)

This also includes issues that were being tracked in the old Chocolatey repository: [Chocolatey 0.9.9](https://github.com/chocolatey/chocolatey/issues?q=is%3Aclosed+label%3Av0.9.9).

Expand Down
18 changes: 18 additions & 0 deletions nuget/chocolatey/chocolatey.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,24 @@ In that mess there is a link to the [Helper Reference](https://github.com/chocol
<releaseNotes>
See all - https://github.com/chocolatey/choco/blob/master/CHANGELOG.md

## 0.9.9.2

### BUG FIXES

* Fix - Allow passing install arguments again (regression in 0.9.9 series) - see [#150](https://github.com/chocolatey/choco/issues/150)
* Fix - Allow apostrophes to be used as quotes - quoting style that worked with previous client - see [#141](https://github.com/chocolatey/choco/issues/141)
* Fix - Shims write errors to stderr - see [#142](https://github.com/chocolatey/choco/issues/142) and [ShimGen #14](https://github.com/chocolatey/shimgen/issues/14)

### IMPROVEMENTS

* Upgrade `-r` should always return a value - see [#153](https://github.com/chocolatey/choco/issues/153)

## 0.9.9.1

### BUG FIXES

* Fix - Get-BinRoot broken - see [#144](https://github.com/chocolatey/choco/issues/144)

##0.9.9

This also includes issues that were being tracked in the old Chocolatey repository: [Chocolatey 0.9.9](https://github.com/chocolatey/chocolatey/issues?q=is%3Aclosed+label%3Av0.9.9).
Expand Down
Binary file modified src/chocolatey.resources/redirects/choco.exe
Binary file not shown.
Binary file modified src/chocolatey.resources/redirects/chocolatey.exe
Binary file not shown.
Binary file modified src/chocolatey.resources/redirects/cinst.exe
Binary file not shown.
Binary file modified src/chocolatey.resources/redirects/clist.exe
Binary file not shown.
Binary file modified src/chocolatey.resources/redirects/cpack.exe
Binary file not shown.
Binary file modified src/chocolatey.resources/redirects/cpush.exe
Binary file not shown.
Binary file modified src/chocolatey.resources/redirects/cuninst.exe
Binary file not shown.
Binary file modified src/chocolatey.resources/redirects/cup.exe
Binary file not shown.
Binary file modified src/chocolatey.resources/redirects/cver.exe
Binary file not shown.
Binary file modified src/chocolatey.resources/tools/shimgen.exe
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ public bool run_action(ChocolateyConfiguration configuration, PackageResult pack
Environment.SetEnvironmentVariable("chocolateyPackageFolder", packageDirectory);
Environment.SetEnvironmentVariable("packageFolder", packageDirectory);
Environment.SetEnvironmentVariable("installerArguments", configuration.InstallArguments);
Environment.SetEnvironmentVariable("chocolateyInstallArguments", configuration.InstallArguments);
Environment.SetEnvironmentVariable("chocolateyPackageParameters", configuration.PackageParameters);
if (configuration.ForceX86)
{
Expand Down

0 comments on commit 9fd1a79

Please sign in to comment.