summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.expeditor/config.yml7
-rw-r--r--CHANGELOG.md6
-rw-r--r--README.md1
-rw-r--r--VERSION2
-rw-r--r--lib/mixlib/shellout/version.rb2
5 files changed, 13 insertions, 5 deletions
diff --git a/.expeditor/config.yml b/.expeditor/config.yml
index 8247a90..75e5e3c 100644
--- a/.expeditor/config.yml
+++ b/.expeditor/config.yml
@@ -2,7 +2,7 @@
---
# Slack channel in Chef Software slack to send notifications about build failures, etc
slack:
- notify_channel: chef-notify
+ notify_channel: chef-found-notify
# This publish is triggered by the `built_in:publish_rubygems` artifact_action.
rubygems:
@@ -43,3 +43,8 @@ promote:
actions:
- built_in:rollover_changelog
- built_in:publish_rubygems
+
+pipelines:
+ - verify:
+ description: Pull Request validation tests
+ public: true
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e7d5c4a..7ee9d6b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,15 +1,17 @@
# mixlib-shellout Changelog
-<!-- latest_release unreleased -->
-## Unreleased
+<!-- latest_release 3.0.2 -->
+## [v3.0.2](https://github.com/chef/mixlib-shellout/tree/v3.0.2) (2019-06-01)
#### Merged Pull Requests
+- Add BuildKite pipeline [#184](https://github.com/chef/mixlib-shellout/pull/184) ([tas50](https://github.com/tas50))
- Add new github templates and codeowners file [#179](https://github.com/chef/mixlib-shellout/pull/179) ([tas50](https://github.com/tas50))
<!-- latest_release -->
<!-- release_rollup since=2.4.4 -->
### Changes not yet released to rubygems.org
#### Merged Pull Requests
+- Add BuildKite pipeline [#184](https://github.com/chef/mixlib-shellout/pull/184) ([tas50](https://github.com/tas50)) <!-- 3.0.2 -->
- Add new github templates and codeowners file [#179](https://github.com/chef/mixlib-shellout/pull/179) ([tas50](https://github.com/tas50)) <!-- 3.0.1 -->
- Misnamed parameter in README [#178](https://github.com/chef/mixlib-shellout/pull/178) ([martinisoft](https://github.com/martinisoft)) <!-- 3.0.1 -->
- update travis/appveyor, drop ruby 2.2 support, test on 2.6 [#176](https://github.com/chef/mixlib-shellout/pull/176) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- 3.0.0 -->
diff --git a/README.md b/README.md
index 45ebedd..ffdc112 100644
--- a/README.md
+++ b/README.md
@@ -67,6 +67,7 @@ Invoke "whoami.exe" with elevated privileges:
whoami = Mixlib::ShellOut.new("whoami.exe", :user => "username", :domain => "DOMAIN", :password => "password", :elevated => true)
whoami.run_command
```
+
**NOTE:** The user 'admin' must have the 'Log on as a batch job' permission and the user chef is running as must have the 'Replace a process level token' and 'Adjust Memory Quotas for a process' permissions.
## Platform Support
diff --git a/VERSION b/VERSION
index 13d683c..d9c62ed 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-3.0.1 \ No newline at end of file
+3.0.2 \ No newline at end of file
diff --git a/lib/mixlib/shellout/version.rb b/lib/mixlib/shellout/version.rb
index 8787911..2204ac3 100644
--- a/lib/mixlib/shellout/version.rb
+++ b/lib/mixlib/shellout/version.rb
@@ -1,5 +1,5 @@
module Mixlib
class ShellOut
- VERSION = "3.0.1".freeze
+ VERSION = "3.0.2".freeze
end
end