diff options
author | Tim Smith <tsmith@chef.io> | 2016-08-04 10:45:02 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-04 10:45:02 -0700 |
commit | 3b7c02d56a3f42259027876a399c3f475f7a0de8 (patch) | |
tree | 2642af74f2dec09a0a3a5308dbeecd7b640887e2 | |
parent | 1cb19d0609e3a9e8aa5abb34bd1125156cf9ed31 (diff) | |
parent | dc4ef3cdc9afcb73cba35efd06683b77d973d0af (diff) | |
download | ohai-8.18.0.tar.gz |
Merge pull request #858 from chef/8.18v8.18.0
Release 8.18
-rw-r--r-- | CHANGELOG.md | 19 | ||||
-rw-r--r-- | lib/ohai/version.rb | 2 |
2 files changed, 20 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index dc6aca5c..f90f1048 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Change Log +## [8.18.0](https://github.com/chef/ohai/tree/8.18.0) (2016-08-04) + +[Full Changelog](https://github.com/chef/ohai/compare/v8.17.1...8.18.0) + +**Implemented enhancements:** + +- Add a plugin for collecting available shells [#856](https://github.com/chef/ohai/pull/856) ([tas50](https://github.com/tas50)) +- BlockDevice: Add physical and logical block size [#850](https://github.com/chef/ohai/pull/850) ([sun77](https://github.com/sun77)) +- Properly detect PHP 7 [#848](https://github.com/chef/ohai/pull/848) ([tas50](https://github.com/tas50)) +- Add support for Linux HugePages [#842](https://github.com/chef/ohai/pull/842) ([bjk-soundcloud](https://github.com/bjk-soundcloud)) +- Add detection of Virtualbox and VMware Fusion on OS X [#840](https://github.com/chef/ohai/pull/840) ([tas50](https://github.com/tas50)) +- Remove support for Ruby 2.0 [#838](https://github.com/chef/ohai/pull/838) ([tas50](https://github.com/tas50)) +- Add hardware plugin for ohai on darwin [#839](https://github.com/chef/ohai/pull/839) ([natewalck](https://github.com/natewalck)) + +**Fixed bugs:** + +- Avoid global mutation. [#852](https://github.com/chef/ohai/pull/852) ([coderanger](https://github.com/coderanger)) + + ## [8.17.1](https://github.com/chef/ohai/tree/8.17.1) (2016-06-30) [Full Changelog](https://github.com/chef/ohai/compare/v8.17.0...8.17.1) diff --git a/lib/ohai/version.rb b/lib/ohai/version.rb index 07ff6311..0ea35b99 100644 --- a/lib/ohai/version.rb +++ b/lib/ohai/version.rb @@ -18,5 +18,5 @@ module Ohai OHAI_ROOT = File.expand_path(File.dirname(__FILE__)) - VERSION = "8.17.1" + VERSION = "8.18.0" end |