summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2017-12-04 12:28:49 -0800
committerTim Smith <tsmith@chef.io>2017-12-04 12:31:44 -0800
commit276570a435da9348cd0ecf7577bc0c627459f283 (patch)
tree2c93ea716388aa5ef68fa79924d0d3db1bcd56dd
parent212678beefb45d85ac06842de7082a820f67e77a (diff)
downloadohai-13.7.tar.gz
Release 13.7.013.7
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--CHANGELOG.md12
-rw-r--r--RELEASE_NOTES.md10
-rw-r--r--lib/ohai/version.rb2
3 files changed, 23 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c3b484d5..39eb24ea 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,17 @@
# Change Log
+## [v13.7.0](https://github.com/chef/ohai/tree/v13.7.0) (2017-12-04)
+
+[Full Changelog](https://github.com/chef/ohai/compare/v13.6.0...v13.7.0)
+
+- Detect new Amazon hypervisor used by the C5 instances
+- [mdadm] Support arrays more than 10 disks
+- [mdadm] Handle journal and spare devices properly
+- Add support for Linux MemAvailable value
+- Added systemd-nspawn virtualization detection
+- Remove Ruby 1.8 era rubygems error handling code
+- Fix several typos and add a missing debug message
+
## [v13.6.0](https://github.com/chef/ohai/tree/v13.6.0) (2017-10-24)
[Full Changelog](https://github.com/chef/ohai/compare/v13.5.0...v13.6.0)
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index ec7268da..7692c87c 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -1,3 +1,13 @@
+# Ohai Release Notes 13.7
+
+### EC2 C5 Detection
+
+The EC2 plugin has been updated to properly detect the new AWS hypervisor used in the C5 instance types
+
+### mdadm
+
+The mdadm plugin has been updated to properly handle arrays with more than 10 disks and to properly handle journal and spare drives in the disk counts
+
# Ohai Release Notes 13.6
### Critical Plugins
diff --git a/lib/ohai/version.rb b/lib/ohai/version.rb
index 24947c87..d501ddf2 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 = "13.6.0"
+ VERSION = "13.7.0"
end