summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjtimberman <joshua@opscode.com>2012-07-11 15:49:39 -0600
committerjtimberman <joshua@opscode.com>2012-07-11 15:49:39 -0600
commit7777e2d9a1d69e576ff402964d8f98c190fd528d (patch)
tree698208a8014e99a92cf1abbec7fcd91574569fe1
parent1bdc055592322756f39f9a7c34edbe16645742e3 (diff)
downloadmixlib-shellout-7777e2d9a1d69e576ff402964d8f98c190fd528d.tar.gz
release v1.3.21.3.2
-rw-r--r--CHANGELOG.md6
-rw-r--r--README.md1
-rw-r--r--metadata.rb2
3 files changed, 8 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index bd943f6..26209a2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,12 @@
* WindowsRebootHandler/`windows_reboot` LWRP should support kicking off subsequent chef run on reboot.
* Support all types of registry keys with `type` parameter in `windows_registry`.
+## v1.3.2:
+
+* [COOK-1033] - remove the `libraries/ruby_19_patches.rb` file which
+ causes havoc on non-Windows systems.
+* [COOK-811] - add a timeout parameter attribute for `windows_package`
+
## v1.3.0:
* [COOK-1323] - Update for changes in Chef 0.10.10.
diff --git a/README.md b/README.md
index 3415df3..b0541f9 100644
--- a/README.md
+++ b/README.md
@@ -174,6 +174,7 @@ For maximum flexibility the `source` attribute supports both remote and local in
- installer_type: They type of windows installation package. valid values are: :msi, :inno, :nsis, :wise, :installshield, :custom. If this value is not provided, the provider will do it's best to identify the installer type through introspection of the file.
- checksum: useful if source is remote, the SHA-256 checksum of the file--if the local file matches the checksum, Chef will not download it
- options: Additional options to pass the underlying installation command
+- timeout: set a timeout for the package download (default 600 seconds)
### Examples
diff --git a/metadata.rb b/metadata.rb
index c88f094..f2ee595 100644
--- a/metadata.rb
+++ b/metadata.rb
@@ -3,6 +3,6 @@ maintainer_email "cookbooks@opscode.com"
license "Apache 2.0"
description "Provides a set of useful Windows-specific primitives."
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
-version "1.3.0"
+version "1.3.2"
supports "windows"
depends "chef_handler"