diff --git a/Changes b/Changes index 4cee5d4..0e125c2 100644 --- a/Changes +++ b/Changes @@ -3,6 +3,9 @@ Changes for Perl extension DBD-SQLite 1.28_02 to be released - Now empty (or comment only) statements won't cause segv or "not an error" errors. Spotted by TOKUHIROM. (ISHIGAKI) + - Resolved #52573: previous fix always turned on the AutoCommit + flag; it goes along with the behavior of the internal library + but broke compat. (ISHIGAKI) 1.28_01 Tue 22 Dec 2009 - Updated to SQLite 3.6.21 (ISHIGAKI) diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index 49aa361..2f7aabc 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.28_01'; + $VERSION = '1.28_02'; @ISA = 'DynaLoader'; # Initialize errors diff --git a/t/lib/Test.pm b/t/lib/Test.pm index 0590a91..9c8af31 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.28_01'; + $VERSION = '1.28_02'; @ISA = 'Exporter'; @EXPORT = qw/connect_ok dies @CALL_FUNCS/;