remove Build.PL from dist, release 0.17 0.17
Brandon L Black [Tue, 8 May 2007 12:47:52 +0000 (12:47 +0000)]
ChangeLog
MANIFEST
MANIFEST.SKIP
Makefile.PL
README
lib/Class/C3.pm

index ebb3164..8d96a5b 100644 (file)
--- 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
index d52115f..6c603ad 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -1,4 +1,3 @@
-Build.PL
 ChangeLog
 inc/Module/AutoInstall.pm
 inc/Module/Install.pm
index 7b2d6f9..01a849b 100644 (file)
@@ -18,3 +18,4 @@ cover_db
 ^\.#
 \.gz$
 DEV_README
+Build.PL
index d7078f6..52adfb1 100644 (file)
@@ -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 (file)
--- 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
 
index 7194298..baca46d 100644 (file)
@@ -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;