mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-07 22:28:47 -04:00
updated Changes and versions; please ship this as another dev release
This commit is contained in:
parent
09e7f2d4f8
commit
ea7093b866
3 changed files with 5 additions and 2 deletions
3
Changes
3
Changes
|
@ -3,6 +3,9 @@ Changes for Perl extension DBD-SQLite
|
||||||
1.28_02 to be released
|
1.28_02 to be released
|
||||||
- Now empty (or comment only) statements won't cause segv
|
- Now empty (or comment only) statements won't cause segv
|
||||||
or "not an error" errors. Spotted by TOKUHIROM. (ISHIGAKI)
|
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
|
1.28_01 Tue 22 Dec 2009
|
||||||
- Updated to SQLite 3.6.21 (ISHIGAKI)
|
- Updated to SQLite 3.6.21 (ISHIGAKI)
|
||||||
|
|
|
@ -10,7 +10,7 @@ use vars qw{$err $errstr $drh $sqlite_version};
|
||||||
use vars qw{%COLLATION};
|
use vars qw{%COLLATION};
|
||||||
|
|
||||||
BEGIN {
|
BEGIN {
|
||||||
$VERSION = '1.28_01';
|
$VERSION = '1.28_02';
|
||||||
@ISA = 'DynaLoader';
|
@ISA = 'DynaLoader';
|
||||||
|
|
||||||
# Initialize errors
|
# Initialize errors
|
||||||
|
|
|
@ -9,7 +9,7 @@ use Test::More ();
|
||||||
|
|
||||||
use vars qw{$VERSION @ISA @EXPORT @CALL_FUNCS};
|
use vars qw{$VERSION @ISA @EXPORT @CALL_FUNCS};
|
||||||
BEGIN {
|
BEGIN {
|
||||||
$VERSION = '1.28_01';
|
$VERSION = '1.28_02';
|
||||||
@ISA = 'Exporter';
|
@ISA = 'Exporter';
|
||||||
@EXPORT = qw/connect_ok dies @CALL_FUNCS/;
|
@EXPORT = qw/connect_ok dies @CALL_FUNCS/;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue