1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 22:28:47 -04:00

Minor changes to we pass version dependency checks

This commit is contained in:
Adam Kennedy 2009-04-03 19:05:14 +00:00
parent 8ddf75e5f0
commit f0d8426470
4 changed files with 6 additions and 6 deletions

View file

@ -49,7 +49,7 @@ Revision history for Perl extension DBD-SQLite.
- Added TODO to show which issues are to be fixed. (ISHIGAKI)
- License and configure_requires in Makefile.PL and META.yml (Alexandr Ciornii)
- Spelling check for SQLite.pm (Alexandr Ciornii)
- Adding arbitrary Perl 5.005 minimum
- Adding arbitrary Perl 5.00503 minimum
1.16 abandoned

View file

@ -1,4 +1,4 @@
use 5.005;
use 5.00503;
use strict;
use ExtUtils::MakeMaker;
use Config;
@ -198,7 +198,7 @@ WriteMakefile(
'Test::More' => '0.42',
},
OPTIONAL( '6.48',
MIN_PERL_VERSION => '5.005',
MIN_PERL_VERSION => '5.00503',
),
OPTIONAL( '6.31',
LICENSE => 'perl',

View file

@ -11,7 +11,7 @@ BEGIN {
use Test::More tests => 4;
ok( $] >= 5.005, 'Perl version is new enough' );
ok( $] >= 5.00503, 'Perl version is new enough' );
use_ok('DBI');
use_ok('DBD::SQLite');

View file

@ -1,6 +1,6 @@
#!/usr/bin/perl
use 5.005_03;
use 5.00503;
use strict;
BEGIN {
$| = 1;