mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-08 14:48:32 -04:00
require perl 5.6 because dependencies require it
This commit is contained in:
parent
4b57777785
commit
77384b193a
2 changed files with 5 additions and 3 deletions
4
Changes
4
Changes
|
@ -1,5 +1,7 @@
|
|||
Changes for Perl extension DBD-SQLite.
|
||||
|
||||
- require perl 5.6 because dependencies require it
|
||||
|
||||
1.19_08 Sat 4 Apr 2009
|
||||
- Bumped minimum DBI dependency to 1.43 so last_insert_id is supported
|
||||
in DBI (ADAMK)
|
||||
|
@ -12,7 +14,7 @@ Changes for Perl extension DBD-SQLite.
|
|||
test (ADAMK)
|
||||
- Resolved #9792: Crashes upon re-executing a statement (ADAMK)
|
||||
- Resolved #21472: Spurious "not an error" and "bind or column index
|
||||
out of range" errirs (MSERGEANT)
|
||||
out of range" errors (MSERGEANT)
|
||||
- Resolved #32723: last_insert_rowid should handle sqlite_int64,
|
||||
not int (ADAMK)
|
||||
- Resolved #37215: memory leaks in sqlite_db_disconnect (ADAMK)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
use 5.00503;
|
||||
use 5.006; #from ExtUtils::MakeMaker 6.48 and DBI 1.43
|
||||
use strict;
|
||||
use ExtUtils::MakeMaker;
|
||||
use Config;
|
||||
|
@ -198,7 +198,7 @@ WriteMakefile(
|
|||
'Test::More' => '0.42',
|
||||
},
|
||||
OPTIONAL( '6.48',
|
||||
MIN_PERL_VERSION => '5.00503',
|
||||
MIN_PERL_VERSION => '5.006',
|
||||
),
|
||||
OPTIONAL( '6.31',
|
||||
LICENSE => 'perl',
|
||||
|
|
Loading…
Add table
Reference in a new issue