diff options
-rw-r--r-- | CHANGELOG | 23 | ||||
-rw-r--r-- | lib/facter.rb | 2 |
2 files changed, 23 insertions, 2 deletions
@@ -1,4 +1,4 @@ -1.5.x: +1.5.1: Added a Process.waitall thread when there's a timeout, to avoid zombies. Set the timeout the host-based and resolve-based resolutions to 2. @@ -16,6 +16,27 @@ Fixes #1467 - macaddress not set on Ubuntu + Adding a rake task for creating an archive. + + Adding better SuSE detection for both operatingsystem and release. + + Add sample test and strawman solution for IP parsing code + + Add module level tests for Facter::IPAddress + + Fixed #1425 - Solaris + + Feature #1487: Package creation scripts for Mac OS X + + Feature #1478: Allow specification of --bindir --sbindir --sitelibdir --mandir + + Feature #1475: CONFIG['bindir'] CONFIG['sbindir'] have undesirable defaults on + + Fixes #1467 - macaddress not set on Ubuntu + + Enabled a number of Windows facts - operating system, domain, ipaddress, macaddress, + kernel, ipconfig and others + 1.5.0: Fixed Rakefile to include additional files including tests et al diff --git a/lib/facter.rb b/lib/facter.rb index 36889c8..bb398da 100644 --- a/lib/facter.rb +++ b/lib/facter.rb @@ -27,7 +27,7 @@ module Facter include Comparable include Enumerable - FACTERVERSION = '1.5.0' + FACTERVERSION = '1.5.1' # = Facter # Functions as a hash of 'facts' you might care about about your # system, such as mac address, IP address, Video card, etc. |