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:
parent
8ddf75e5f0
commit
f0d8426470
4 changed files with 6 additions and 6 deletions
2
Changes
2
Changes
|
@ -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
|
||||
|
||||
|
|
|
@ -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',
|
||||
|
|
|
@ -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');
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/perl
|
||||
|
||||
use 5.005_03;
|
||||
use 5.00503;
|
||||
use strict;
|
||||
BEGIN {
|
||||
$| = 1;
|
||||
|
|
Loading…
Add table
Reference in a new issue