From: Brandon L Black Date: Thu, 3 May 2007 17:28:20 +0000 (+0000) Subject: final changes for 0.02 release X-Git-Tag: 0.02^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FClass-C3-XS.git;a=commitdiff_plain;h=9ad24e9168a38776ad55ec48b38b21259fdb7e51 final changes for 0.02 release --- diff --git a/ChangeLog b/ChangeLog index 7b270be..3f32088 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,24 +1,7 @@ Revision history for Perl extension Class::C3::XS -0.01_07 Tue May 1, 2007 - Added calculate_method_dispatch_tables - Converted to Module::Install - -0.01_06 Tue Apr 17, 2007 - Better memory management? - -0.01_05 Mon Apr 16, 2007 - Fixed assumption of defined-ness when looking in %Class::C3::MRO - -0.01_04 Mon Apr 16, 2007 - Fix threads issue? - -0.01_03 Mon Apr 16, 2007 - Fix AvARRAY lvalue issue - -0.01_02 Mon Apr 16, 2007 - Fix MakeMaker compat, and source compat, maybe - not it will work for more people +0.02 Thurs May 3, 2007 + First non-dev release 0.01_01 Sun Apr 15, 2007 - Initial Release + Initial development release diff --git a/README b/README index 437223a..c2adb94 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -Class::C3::XS version 0.01_07 +Class::C3::XS version 0.02 ============================== INSTALLATION diff --git a/lib/Class/C3/XS.pm b/lib/Class/C3/XS.pm index 9871ae6..657cdef 100644 --- a/lib/Class/C3/XS.pm +++ b/lib/Class/C3/XS.pm @@ -4,7 +4,7 @@ use 5.008_000; use strict; use warnings; -our $VERSION = '0.01_07'; +our $VERSION = '0.02'; =pod @@ -19,15 +19,20 @@ Class::C3::XS - XS speedups for Class::C3 =head1 DESCRIPTION -This contains XS performance enhancers for L. -The main L package will use this package automatically -if it can find it. Do not use this package directly, use -L instead. +This contains XS performance enhancers for L version +0.16 and higher. The main L package will use this +package automatically if it can find it. Do not use this +package directly, use L instead. The test suite here is not complete, although it does verify a few basic things. The best testing comes from running the L test suite *after* this module is installed. +This module won't do anything for you if you're running a +version of L older than 0.16. (It's not a +dependency because it would be circular with the optional +dep from that package to this one). + =head1 AUTHOR Brandon L. Black, Eblblack@gmail.comE