1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-08 14:48:32 -04:00

Preparing for dev release

This commit is contained in:
Adam Kennedy 2009-05-05 05:42:39 +00:00
parent dee5f81976
commit 7315981580
3 changed files with 7 additions and 6 deletions

View file

@ -1,6 +1,6 @@
Changes for Perl extension DBD-SQLite
1.26 to be released
1.26_01 Tue 5 May 2009
- Added ORDINAL_POSITION support for $dbh->column_info (ADAMK)
- Applied several fixes from GFUJI to clean up code (#45578)
(ISHIGAKI)

View file

@ -8,8 +8,8 @@ use DynaLoader ();
use vars qw($VERSION @ISA);
use vars qw{$err $errstr $drh $sqlite_version};
BEGIN {
$VERSION = '1.26';
@ISA = ('DynaLoader');
$VERSION = '1.26_01';
@ISA = 'DynaLoader';
# Initialize errors
$err = undef;
@ -397,6 +397,7 @@ sub column_info {
$sponge->err,
$sponge->errstr,
);
return $sth;
}

View file

@ -9,9 +9,9 @@ use Test::More ();
use vars qw{$VERSION @ISA @EXPORT};
BEGIN {
$VERSION = '1.26';
@ISA = qw{ Exporter };
@EXPORT = qw{ connect_ok };
$VERSION = '1.26_01';
@ISA = 'Exporter';
@EXPORT = 'connect_ok';
# Allow tests to load modules bundled in /inc
unshift @INC, 'inc';