diff options
author | Jay Mundrawala <jdmundrawala@gmail.com> | 2014-12-19 10:33:38 -0800 |
---|---|---|
committer | Jay Mundrawala <jdmundrawala@gmail.com> | 2014-12-19 10:33:38 -0800 |
commit | c8a21148f1851b61b213d1f30c88acc7669df7c2 (patch) | |
tree | e8e86527e620bb562123e12daa09e363e2a5c2c5 | |
parent | b4eb2472cbb0b18e498881c9443e26b95dd4e62f (diff) | |
parent | 3315bbed5a3671019032e59d4e266ec15b234270 (diff) | |
download | mixlib-shellout-c8a21148f1851b61b213d1f30c88acc7669df7c2.tar.gz |
Merge pull request #85 from opscode/jdm/2.0.12.0.1
2.0.1 Release
-rw-r--r-- | CHANGELOG.md | 5 | ||||
-rw-r--r-- | lib/mixlib/shellout/version.rb | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index b64b9ea..ca1a924 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## Release: 2.0.1 + +* add buffering to the child process status pipe to fix chef-client deadlocks +* fix timeouts on Windows + ## Release: 2.0.0 * remove LC_ALL=C default setting, consumers should now set this if they diff --git a/lib/mixlib/shellout/version.rb b/lib/mixlib/shellout/version.rb index e741dfb..2301857 100644 --- a/lib/mixlib/shellout/version.rb +++ b/lib/mixlib/shellout/version.rb @@ -1,5 +1,5 @@ module Mixlib class ShellOut - VERSION = "2.2.0.dev.0" + VERSION = "2.0.1" end end |