From 936f9fe1ba15eebe251201524f8013c2cf85e3db Mon Sep 17 00:00:00 2001 From: Adam Jacob Date: Thu, 5 Mar 2009 23:15:39 -0800 Subject: [PATCH] Updating Changelog, bumping version to 0.2.0 for release --- CHANGELOG | 29 +++++++++++++++++++++++++++++ Rakefile | 2 +- lib/ohai.rb | 2 +- 3 files changed, 31 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 2116154c0..cee734e1f 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,32 @@ +Thu Mar 5 23:15:03 PST 2009 +Release Notes - Ohai - Version 0.2.0 +http://tickets.opscode.com + +** Bug + * [OHAI-40] - virt and lsb spec's lack use of should/should_not + * [OHAI-44] - darwin network.rb should always use -n on relevant commands + * [OHAI-45] - vmnet interfaces confuse counter collection on darwin + * [OHAI-46] - lo0 counters not collected on darwin + * [OHAI-47] - virtualization plugin doesn't correctly detect VMware or VirtualPC platforms + * [OHAI-51] - If hostname -f exits with 1, ohai linux hostname plugin vomits + * [OHAI-54] - Use IO.read rather than cat + * [OHAI-61] - several items in lib/ohai/plugins/freebsd/network.rb have not been converted to Mash + * [OHAI-62] - ohai throws stack when python is not in path + * [OHAI-63] - ohai does not properly detect 64-bit on darwin + * [OHAI-64] - ohai/plugins/freebsd/kernel.rb does not set kernel[:os] + +** Improvement + * [OHAI-49] - network interface addresses should be stored in a hash not an array + * [OHAI-50] - python language plugin + * [OHAI-58] - Plugin specifications for FreeBSD + +** New Feature + * [OHAI-36] - Add libvirt-sourced data to ohai + * [OHAI-57] - ohai needs a --debug option to show errors during collection + +** Task + * [OHAI-55] - Need to grab 'user-data' as well as 'meta-data' for EC2 + Sat Jan 31 19:05:49 PST 2009 Release Notes - Ohai - Version 0.1.4 http://tickets.opscode.com diff --git a/Rakefile b/Rakefile index 438005fd2..3238c92d7 100644 --- a/Rakefile +++ b/Rakefile @@ -5,7 +5,7 @@ require 'date' require 'spec/rake/spectask' GEM = "ohai" -GEM_VERSION = "0.1.5" +GEM_VERSION = "0.2.0" AUTHOR = "Adam Jacob" EMAIL = "adam@opscode.com" HOMEPAGE = "http://wiki.opscode.com/display/ohai" diff --git a/lib/ohai.rb b/lib/ohai.rb index 104170093..5c173283e 100644 --- a/lib/ohai.rb +++ b/lib/ohai.rb @@ -23,5 +23,5 @@ require 'ohai/system' module Ohai - VERSION = '0.1.5' + VERSION = '0.2.0' end