From ca498a28df534f29ae944b644cf913b8efe5581e Mon Sep 17 00:00:00 2001 From: luke Date: Fri, 22 Sep 2006 05:24:06 +0000 Subject: updating changelog for 1.3.4 git-svn-id: http://reductivelabs.com/svn/facter/trunk@172 1f5c1d6a-bddf-0310-8f58-fc49e503516a --- CHANGELOG | 9 ++++++++- tests/tc_facterbin.rb | 2 ++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 5226eef..6a565f1 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,7 +1,14 @@ +1.3.4: + Added many new facts, including LSB facts. + + Fixed a few small bugs, notably the error you could get when asking + for a non-existent fact. + 1.3.3: Added thread exclusivity to memory and processor facts. - Added the ability to retrieve facts by pulling them out of the shell environment. + Added the ability to retrieve facts by pulling them out of the shell + environment. 1.3.2: Temporarily disabled memory and processor facts since they might cause hangs. diff --git a/tests/tc_facterbin.rb b/tests/tc_facterbin.rb index 9d9ca15..85f8df1 100755 --- a/tests/tc_facterbin.rb +++ b/tests/tc_facterbin.rb @@ -75,6 +75,8 @@ class TestFacterBin < Test::Unit::TestCase assert_instance_of(Hash, result) result.each do |name, value| + # These change too frequently. + next if name.to_s.downcase =~ /mem/ assert_equal(value, Facter.value(name)) end end -- cgit