summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2016-06-20 21:26:06 +0200
committerGitHub <noreply@github.com>2016-06-20 21:26:06 +0200
commitb9d6f54fe82752f3a803c124c3887cb6061bbfbf (patch)
treebae5ccfa54e3ac0e1f2ffa087495da33d99ad419
parentd1e2fe982c3648b219715d056428a75d44af5c0d (diff)
parent2f364c3999e05397d0ca45276a60a5c2ed3e794f (diff)
downloadohai-b9d6f54fe82752f3a803c124c3887cb6061bbfbf.tar.gz
Merge pull request #834 from chef/8.17v8.17.0
Release 8.17.0
-rw-r--r--CHANGELOG.md17
-rw-r--r--RELEASE_NOTES.md12
-rw-r--r--lib/ohai/version.rb2
3 files changed, 18 insertions, 13 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 79e53a8e..c434366d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,7 +1,20 @@
# Change Log
-## [8.16.0](https://github.com/chef/ohai/tree/8.16.0) (2016-05-11)
-[Full Changelog](https://github.com/chef/ohai/compare/v8.15.1...8.16.0)
+## [8.17.0](https://github.com/chef/ohai/tree/8.17.0) (2016-06-19)
+[Full Changelog](https://github.com/chef/ohai/compare/v8.16.0...8.17.0)
+
+**Implemented enhancements:**
+
+- Add additional info to networking interfaces/addresses [\#830](https://github.com/chef/ohai/pull/830) ([jaymzh](https://github.com/jaymzh))
+- Add a simple plugin to get the local timezone. [\#829](https://github.com/chef/ohai/pull/829) ([johnbellone](https://github.com/johnbellone))
+- Switch to kernel version to identify platform_version on Gentoo [\#828](https://github.com/chef/ohai/pull/828) ([tas50](https://github.com/tas50))
+- Expose ring parameters in the network plugin [\#827](https://github.com/chef/ohai/pull/827) ([davide125](https://github.com/davide125))
+- Improve packages attributes [\#820](https://github.com/chef/ohai/pull/820) ([glensc](https://github.com/glensc))
+- Add version for linux modules when available [\#816](https://github.com/chef/ohai/pull/816) ([jmauro](https://github.com/jmauro))
+- Add freebsd support in packages plugin [\#814](https://github.com/chef/ohai/pull/814) ([vr](https://github.com/vr))
+
+## [v8.16.0](https://github.com/chef/ohai/tree/v8.16.0) (2016-05-12)
+[Full Changelog](https://github.com/chef/ohai/compare/v8.15.1...v8.16.0)
**Implemented enhancements:**
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index 391df975..f3b53601 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -9,14 +9,6 @@ Details about the thing that changed that needs to get included in the Release N
# Ohai Release Notes:
-## Openstack
+## Gentoo platform version
-- Openstack metadata will now be properly polled if either a hint file or Openstack DMI data is present. This data will be used to populate IP information in the cloud and cloudv2 plugins
-
-## bhyve
-
-- Nodes running as bhyve guests will now be identified in the virtualization plugin
-
-## PLD Linux
-
-- Package information will now be gathered in PLD Linux
+Platform version on Gentoo hosts was previously detected as the Gentoo base system release version, which is actually the bootstrap image version. This hasn't changed in many years and is not an accurate way to determine the version of a Gentoo system. Instead Gentoo platform_version will now be the version of the kernel, matching the behavior we already use on Arch Linux.
diff --git a/lib/ohai/version.rb b/lib/ohai/version.rb
index 2e58758f..b5fc6603 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.16.0"
+ VERSION = "8.17.0"
end