diff options
-rw-r--r-- | CHANGELOG.md | 7 | ||||
-rw-r--r-- | VERSION | 2 | ||||
-rw-r--r-- | lib/mixlib/shellout/version.rb | 2 |
3 files changed, 6 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b208c8..d457f02 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,16 @@ # mixlib-shellout Changelog -<!-- latest_release 3.0.8 --> -## [v3.0.8](https://github.com/chef/mixlib-shellout/tree/v3.0.8) (2019-12-30) +<!-- latest_release 3.0.9 --> +## [v3.0.9](https://github.com/chef/mixlib-shellout/tree/v3.0.9) (2019-12-30) #### Merged Pull Requests -- Add Ruby 2.6/2.7 and Windows testing [#198](https://github.com/chef/mixlib-shellout/pull/198) ([tas50](https://github.com/tas50)) +- Substitute require for require_relative [#199](https://github.com/chef/mixlib-shellout/pull/199) ([tas50](https://github.com/tas50)) <!-- latest_release --> <!-- release_rollup since=3.0.7 --> ### Changes not yet released to rubygems.org #### Merged Pull Requests +- Substitute require for require_relative [#199](https://github.com/chef/mixlib-shellout/pull/199) ([tas50](https://github.com/tas50)) <!-- 3.0.9 --> - Add Ruby 2.6/2.7 and Windows testing [#198](https://github.com/chef/mixlib-shellout/pull/198) ([tas50](https://github.com/tas50)) <!-- 3.0.8 --> <!-- release_rollup --> <!-- latest_stable_release --> @@ -1 +1 @@ -3.0.8
\ No newline at end of file +3.0.9
\ No newline at end of file diff --git a/lib/mixlib/shellout/version.rb b/lib/mixlib/shellout/version.rb index 47d5497..d46598d 100644 --- a/lib/mixlib/shellout/version.rb +++ b/lib/mixlib/shellout/version.rb @@ -1,5 +1,5 @@ module Mixlib class ShellOut - VERSION = "3.0.8".freeze + VERSION = "3.0.9".freeze end end |