summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--RELEASE_NOTES.md12
-rw-r--r--lib/ohai/version.rb2
2 files changed, 13 insertions, 1 deletions
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index aee885a2..657a2911 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -1,3 +1,15 @@
+# Ohai Release Notes 13.5
+
+### Correctly detect IPv6 routes ending in ::
+
+Previously we would ignore routes that ended `::`, and now we properly
+detect them.
+
+### Plugin run time is now measured
+
+Debug logs will show the length of time each plugin takes to run, making
+debugging of long ohai runs easier.
+
# Ohai Release Notes 13.4
### Windows EC2 Detection
diff --git a/lib/ohai/version.rb b/lib/ohai/version.rb
index 7c7fde8c..14798132 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.4.0"
+ VERSION = "13.5.0"
end