From ea7093b8666d8a10681926a1a05025291d8d0d4c Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Fri, 1 Jan 2010 12:49:18 +0000 Subject: [PATCH] updated Changes and versions; please ship this as another dev release --- Changes | 3 +++ lib/DBD/SQLite.pm | 2 +- t/lib/Test.pm | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) 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/;