1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-08 22:58:17 -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 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) - Added ORDINAL_POSITION support for $dbh->column_info (ADAMK)
- Applied several fixes from GFUJI to clean up code (#45578) - Applied several fixes from GFUJI to clean up code (#45578)
(ISHIGAKI) (ISHIGAKI)

View file

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

View file

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