Author: timbo
Date: Tue Jul 22 14:45:16 2008
New Revision: 11570

Modified:
   dbi/trunk/Changes
   dbi/trunk/DBI.pm
   dbi/trunk/Makefile.PL

Log:
Fix min perl version requirement (was accidentally 5.8.10)


Modified: dbi/trunk/Changes
==============================================================================
--- dbi/trunk/Changes   (original)
+++ dbi/trunk/Changes   Tue Jul 22 14:45:16 2008
@@ -54,7 +54,7 @@
 
 Add high-res time for windows - via Time::HiRes glob replace dbi_time().
 
-=head2 Changes in DBI 1.606 (svn r11567) 22nd July 2008
+=head2 Changes in DBI 1.607 (svn r11567) 22nd July 2008
 
   NOTE: Perl 5.8.1 is now the minimum supported version.
   If you need support for earlier versions send me a patch.

Modified: dbi/trunk/DBI.pm
==============================================================================
--- dbi/trunk/DBI.pm    (original)
+++ dbi/trunk/DBI.pm    Tue Jul 22 14:45:16 2008
@@ -9,7 +9,7 @@
 require 5.006_00;
 
 BEGIN {
-$DBI::VERSION = "1.606"; # ==> ALSO update the version in the pod text below!
+$DBI::VERSION = "1.607"; # ==> ALSO update the version in the pod text below!
 }
 
 =head1 NAME
@@ -121,7 +121,7 @@
 
 =head2 NOTES
 
-This is the DBI specification that corresponds to the DBI version 1.606
+This is the DBI specification that corresponds to the DBI version 1.607
 ($Revision$).
 
 The DBI is evolving at a steady pace, so it's good to check that

Modified: dbi/trunk/Makefile.PL
==============================================================================
--- dbi/trunk/Makefile.PL       (original)
+++ dbi/trunk/Makefile.PL       Tue Jul 22 14:45:16 2008
@@ -7,7 +7,7 @@
 # See COPYRIGHT section in DBI.pm for usage and distribution rights.
 
 BEGIN {
-    require 5.008_01;
+    require 5.008_001;
     unshift @INC, "lib";
 }
 

Reply via email to