1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 14:19:10 -04:00

DBD-SQLite: updated version and release date

This commit is contained in:
Kenichi Ishigaki 2009-10-06 04:36:11 +00:00
parent d6af16bea5
commit 385c138f67
3 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
Changes for Perl extension DBD-SQLite
1.26_04 to be released
1.26_04 Tue 6 Oct 2009
*** CHANGES THAT MAY POSSIBLY BREAK YOUR OLD APPLICATIONS ***
- Resolved #49716: Fixed $dbh->column_info to work according to
the spec in DBI and added support for attached databases. (VLYON)

View file

@ -10,7 +10,7 @@ use vars qw{$err $errstr $drh $sqlite_version};
use vars qw{%COLLATION};
BEGIN {
$VERSION = '1.26_03';
$VERSION = '1.26_04';
@ISA = 'DynaLoader';
# Initialize errors

View file

@ -9,7 +9,7 @@ use Test::More ();
use vars qw{$VERSION @ISA @EXPORT @CALL_FUNCS};
BEGIN {
$VERSION = '1.26_03';
$VERSION = '1.26_04';
@ISA = 'Exporter';
@EXPORT = qw/connect_ok dies @CALL_FUNCS/;