diff --git a/Changes b/Changes index 759c74e..b9cf6ed 100644 --- a/Changes +++ b/Changes @@ -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) diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index b83aab4..8cc334a 100644 --- a/lib/DBD/SQLite.pm +++ b/lib/DBD/SQLite.pm @@ -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 diff --git a/t/lib/Test.pm b/t/lib/Test.pm index 8c71069..a8f0efa 100644 --- a/t/lib/Test.pm +++ b/t/lib/Test.pm @@ -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/;