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

updated Changes and versions; please ship this as another dev release

This commit is contained in:
Kenichi Ishigaki 2010-01-01 12:49:18 +00:00
parent 09e7f2d4f8
commit ea7093b866
3 changed files with 5 additions and 2 deletions

View file

@ -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)

View file

@ -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

View file

@ -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/;