summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryan McLellan <btm@chef.io>2017-07-19 18:22:33 -0400
committerBryan McLellan <btm@chef.io>2017-07-19 18:22:33 -0400
commit1b6c30ee7f83610d06fdb40aac0e7bbe22907442 (patch)
tree07ed8dbb1fa2a8c820aed65ee929c57db63d9e8c
parent1bd6f8ccbacab9a48b72f2900ce94d6f92f277fc (diff)
downloadmixlib-shellout-1b6c30ee7f83610d06fdb40aac0e7bbe22907442.tar.gz
Release 2.3.0v2.3.0
-rw-r--r--CHANGELOG.md4
-rw-r--r--lib/mixlib/shellout/version.rb2
2 files changed, 5 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e5689a2..1343b0b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
# mixlib-shellout Changelog
+## Release 2.3.0
+
+* Add support for 'elevated' option on Windows, which logs on as batch server which is not affected by User Account Control (UAC)
+
## Release 2.2.6
* Fix regression introduced in 2.2.2 by changing `CreateProcessAsUserW` to use a `:int` instead of `:bool` for the `inherit` flag to fix `shell_out` on windows from a service context
diff --git a/lib/mixlib/shellout/version.rb b/lib/mixlib/shellout/version.rb
index e59d531..3ec8dee 100644
--- a/lib/mixlib/shellout/version.rb
+++ b/lib/mixlib/shellout/version.rb
@@ -1,5 +1,5 @@
module Mixlib
class ShellOut
- VERSION = "2.2.7"
+ VERSION = "2.3.0"
end
end