summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md7
-rw-r--r--README.md2
-rw-r--r--VERSION2
-rw-r--r--lib/mixlib/shellout/version.rb2
4 files changed, 7 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5bbbe24..e4d8e0d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,15 +1,16 @@
# mixlib-shellout Changelog
-<!-- latest_release 3.0.12 -->
-## [v3.0.12](https://github.com/chef/mixlib-shellout/tree/v3.0.12) (2020-07-16)
+<!-- latest_release 3.0.13 -->
+## [v3.0.13](https://github.com/chef/mixlib-shellout/tree/v3.0.13) (2020-07-16)
#### Merged Pull Requests
-- extracting shell_out helper to mixlib-shellout [#206](https://github.com/chef/mixlib-shellout/pull/206) ([lamont-granquist](https://github.com/lamont-granquist))
+- Bumping minor version [#207](https://github.com/chef/mixlib-shellout/pull/207) ([lamont-granquist](https://github.com/lamont-granquist))
<!-- latest_release -->
<!-- release_rollup since=3.0.9 -->
### Changes not yet released to rubygems.org
#### Merged Pull Requests
+- Bumping minor version [#207](https://github.com/chef/mixlib-shellout/pull/207) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- 3.0.13 -->
- extracting shell_out helper to mixlib-shellout [#206](https://github.com/chef/mixlib-shellout/pull/206) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- 3.0.12 -->
- Minor doc fixes [#205](https://github.com/chef/mixlib-shellout/pull/205) ([phiggins](https://github.com/phiggins)) <!-- 3.0.11 -->
- shellout_spec: make &quot;current user&quot; independent of the environment [#203](https://github.com/chef/mixlib-shellout/pull/203) ([terceiro](https://github.com/terceiro)) <!-- 3.0.10 -->
diff --git a/README.md b/README.md
index 9299557..a15682a 100644
--- a/README.md
+++ b/README.md
@@ -77,7 +77,7 @@ Invoke "whoami.exe" with elevated privileges:
**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
-Mixlib::ShellOut does a standard fork/exec on Unix, and uses the Win32 API on Windows. There is not currently support for JRuby.
+Mixlib::ShellOut does a standard fork/exec on Unix, and uses the Win32 API on Windows. There is not currently support for JRuby.
## See Also
- `Process.spawn` in Ruby 1.9+
diff --git a/VERSION b/VERSION
index d003324..9c25f93 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-3.0.12 \ No newline at end of file
+3.0.13 \ No newline at end of file
diff --git a/lib/mixlib/shellout/version.rb b/lib/mixlib/shellout/version.rb
index c99addb..c55b873 100644
--- a/lib/mixlib/shellout/version.rb
+++ b/lib/mixlib/shellout/version.rb
@@ -1,5 +1,5 @@
module Mixlib
class ShellOut
- VERSION = "3.0.12".freeze
+ VERSION = "3.0.13".freeze
end
end