From: Brandon L Black Date: Tue, 8 May 2007 12:47:52 +0000 (+0000) Subject: remove Build.PL from dist, release 0.17 X-Git-Tag: 0.17^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FClass-C3.git;a=commitdiff_plain;h=c5785624dc4f0933fecda24f25349181b53e82e2 remove Build.PL from dist, release 0.17 --- diff --git a/ChangeLog b/ChangeLog index ebb3164..8d96a5b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ Revision history for Perl extension Class::C3. +0.17 Tues, May 8, 2007 + - Remove Build.PL from the distribution + 0.16 Thurs, May 3, 2007 - Converted to Module::Install - Supports optional Class::C3::XS diff --git a/MANIFEST b/MANIFEST index d52115f..6c603ad 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1,4 +1,3 @@ -Build.PL ChangeLog inc/Module/AutoInstall.pm inc/Module/Install.pm diff --git a/MANIFEST.SKIP b/MANIFEST.SKIP index 7b2d6f9..01a849b 100644 --- a/MANIFEST.SKIP +++ b/MANIFEST.SKIP @@ -18,3 +18,4 @@ cover_db ^\.# \.gz$ DEV_README +Build.PL diff --git a/Makefile.PL b/Makefile.PL index d7078f6..52adfb1 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -7,8 +7,7 @@ all_from 'lib/Class/C3.pm'; if($] < 5.009_005) { build_requires 'Test::More' => '0.47'; - feature 'XS Speedups', - ($] < 5.009_005 ? ('Class::C3::XS' => '0.02') : ()); + feature 'XS Speedups', 'Class::C3::XS' => '0.03'; # Would like to disable these if they answer yes above too ... requires 'Algorithm::C3' => '0.06'; diff --git a/README b/README index 809077c..2ed1bbe 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -Class::C3 version 0.16 +Class::C3 version 0.17 =========================== INSTALLATION @@ -21,7 +21,7 @@ Additionally, this module will optionally take advantage of these if installed: perl 5.9.5 - Class::C3::XS 0.02 + Class::C3::XS 0.03 COPYRIGHT AND LICENCE diff --git a/lib/Class/C3.pm b/lib/Class/C3.pm index 7194298..baca46d 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.16'; +our $VERSION = '0.17'; our $C3_IN_CORE; our $C3_XS;