culled a dead branch, Devel::Cover back to 100%, 0.07 released 0.07
Brandon L Black [Mon, 14 May 2007 11:02:28 +0000 (11:02 +0000)]
Changes
README
lib/Algorithm/C3.pm

diff --git a/Changes b/Changes
index 68baa03..bc1d5a8 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,12 @@
 Revision history for Perl extension Algorithm-C3.
 
+0.07 Mon. May 14, 2007
+    - Some very small optimizations had been
+      gathering in the repo for a while, this
+      gets them out to CPAN.  Probably won't
+      notice much difference except in extreme
+      cases.
+
 0.06 Fri. Nov. 17, 2006
     - Added tests from konobi
     - Added some other new tests too
diff --git a/README b/README
index b0fbd30..461cab4 100644 (file)
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-Algorithm::C3 version 0.06
+Algorithm::C3 version 0.07
 ===========================
 
 See the individual module documentation for more information
@@ -16,7 +16,7 @@ DEPENDENCIES
 
 This module requires these other modules and libraries:
 
-       None
+   Carp
 
 COPYRIGHT AND LICENCE
 
index ce473c7..cc3b856 100644 (file)
@@ -6,7 +6,7 @@ use warnings;
 
 use Carp 'confess';
 
-our $VERSION = '0.06';
+our $VERSION = '0.07';
 
 sub merge {
     my ($root, $parent_fetcher, $cache) = @_;
@@ -121,7 +121,7 @@ sub merge {
         $current_parents = pop(@STACK);
         $current_root = pop(@STACK);
 
-        push(@$recurse_mergeout, $mergeout) if @$mergeout;
+        push(@$recurse_mergeout, $mergeout);
     }
 }