From: Brandon L Black Date: Mon, 16 Apr 2007 05:04:51 +0000 (+0000) Subject: 0.15_02, supports Class::C3::XS X-Git-Tag: 0.16~1^2~7 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FClass-C3.git;a=commitdiff_plain;h=dd6d58ff776ef3e678c5ac414022c64ad7febc36 0.15_02, supports Class::C3::XS --- diff --git a/Build.PL b/Build.PL index 8c9fd16..70672ce 100644 --- a/Build.PL +++ b/Build.PL @@ -10,7 +10,7 @@ my $build = Module::Build->new( 'Scalar::Util' => 1.10, }, recommends => { - 'Class::C3::XS' => 0.01, + 'Class::C3::XS' => 0.02, }, build_requires => { 'Test::More' => '0.47', diff --git a/ChangeLog b/ChangeLog index 1c32aea..7f30825 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,9 @@ Revision history for Perl extension Class::C3. +0.15_02 Sun, Apr 15, 2007 - Fix for overloading to method name string, from Ittetsu Miyazaki. + - Supports Class::C3::XS 0.15_01 Fri, Apr 13, 2007 - Supports bleadperl + c3 patches (experimental) diff --git a/README b/README index 12b92e8..d0992d3 100644 --- a/README +++ b/README @@ -20,7 +20,7 @@ This module requires these other modules and libraries: Additionally, this module will optionally take advantage of these if installed: - Class::C3::XS 0.01 + Class::C3::XS 0.01_01 SPECIAL NOTE FOR 0.15_01 diff --git a/lib/Class/C3.pm b/lib/Class/C3.pm index 9bec670..3fb7b29 100644 --- a/lib/Class/C3.pm +++ b/lib/Class/C3.pm @@ -4,7 +4,7 @@ package Class::C3; use strict; use warnings; -our $VERSION = '0.15_01'; +our $VERSION = '0.15_02'; our $C3_IN_CORE; our $C3_XS;