From: Brandon L Black <blblack@gmail.com>
Date: Sat, 12 May 2007 20:47:48 +0000 (+0000)
Subject: 0.18 (require XS 0.04)
X-Git-Tag: 0.18^0
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ebcf1485fff06d827e09d10a40f49c53177df2cf;p=gitmo%2FClass-C3.git

0.18 (require XS 0.04)
---

diff --git a/ChangeLog b/ChangeLog
index 8d96a5b..3af7bde 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 Revision history for Perl extension Class::C3.
 
+0.18 Sat, May 12, 2007
+    - Just bumped XS version requirement
+
 0.17 Tues, May 8, 2007
     - Remove Build.PL from the distribution
 
diff --git a/Makefile.PL b/Makefile.PL
index 52adfb1..405aea3 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -7,7 +7,7 @@ all_from       'lib/Class/C3.pm';
 if($] < 5.009_005) {
     build_requires 'Test::More'    => '0.47';
 
-    feature 'XS Speedups', 'Class::C3::XS' => '0.03';
+    feature 'XS Speedups', 'Class::C3::XS' => '0.04';
 
     # Would like to disable these if they answer yes above too ...
     requires 'Algorithm::C3' => '0.06';
diff --git a/README b/README
index 2ed1bbe..4ce9db5 100644
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-Class::C3 version 0.17
+Class::C3 version 0.18
 ===========================
 
 INSTALLATION
@@ -21,7 +21,7 @@ Additionally, this module will optionally take advantage of
 these if installed:
 
         perl 5.9.5
-        Class::C3::XS 0.03
+        Class::C3::XS 0.04
 
 COPYRIGHT AND LICENCE
 
diff --git a/lib/Class/C3.pm b/lib/Class/C3.pm
index baca46d..cb2ae73 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.17';
+our $VERSION = '0.18';
 
 our $C3_IN_CORE;
 our $C3_XS;