From: Brandon L Black Date: Fri, 10 Nov 2006 00:05:35 +0000 (+0000) Subject: bumped version to 0.06, updated MANIFEST and Changes X-Git-Tag: 0.06~5 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=21f53c4ca10730b0536cde8729ee8f29b9dbb3a5;p=gitmo%2FAlgorithm-C3.git bumped version to 0.06, updated MANIFEST and Changes --- diff --git a/Changes b/Changes index be70c9b..81ce7c6 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,10 @@ Revision history for Perl extension Algorithm-C3. +0.06 XXX Not Yet Released + - Added tests from konobi + - Added some other new tests too + - Fixed infinite loop on recursive heirarchies + 0.05 Fri. Aug. 25, 2006 - Add the ability for the caller to supply a persistent merge cache hashref diff --git a/MANIFEST b/MANIFEST index 86e0994..2b7d909 100644 --- a/MANIFEST +++ b/MANIFEST @@ -14,5 +14,8 @@ t/005_order_disagreement.t t/006_complex_merge.t t/007_cached_merge.t t/008_cached_merge_unordered.t +t/009_dbic_merge.t +t/010_complex_merge_classless.t +t/011_infinite_loop.t t/pod.t t/pod_coverage.t diff --git a/lib/Algorithm/C3.pm b/lib/Algorithm/C3.pm index f1d9781..5d4ceb3 100644 --- a/lib/Algorithm/C3.pm +++ b/lib/Algorithm/C3.pm @@ -6,7 +6,7 @@ use warnings; use Carp 'confess'; -our $VERSION = '0.05'; +our $VERSION = '0.06'; sub merge { my ($root, $parent_fetcher, $cache) = @_;