Revision history for Perl extension Class::C3.
+0.19 Mon, Jun 4, 2007
+ - Added new goto tests, bumped XS version req
+
0.18 Sat, May 12, 2007
- Just bumped XS version requirement
t/33_next_method_used_with_NEXT.t
t/34_next_method_in_eval.t
t/35_next_method_in_anon.t
+t/36_next_goto.t
t/lib/A.pm
t/lib/B.pm
t/lib/C.pm
if($] < 5.009_005) {
build_requires 'Test::More' => '0.47';
- feature 'XS Speedups', 'Class::C3::XS' => '0.04';
+ feature 'XS Speedups', 'Class::C3::XS' => '0.07';
# Would like to disable these if they answer yes above too ...
requires 'Algorithm::C3' => '0.06';
use strict;
use warnings;
-our $VERSION = '0.18';
+our $VERSION = '0.19';
our $C3_IN_CORE;
our $C3_XS;
BEGIN {
if($] > 5.009_004) {
$C3_IN_CORE = 1;
+ require mro;
}
else {
eval "require Class::C3::XS";