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

Confirming a couple of old tickets are fixed

This commit is contained in:
Adam Kennedy 2009-04-04 02:41:25 +00:00
parent 90c018c655
commit 140d920c5a
3 changed files with 8 additions and 4 deletions

View file

@ -1,6 +1,10 @@
Revision history for Perl extension DBD-SQLite.
Changes for Perl extension DBD-SQLite.
1.19_07 not released yet
1.19_08 to be released
- Resolved #30558: INSERT After PK Failure Also Fails Using Prepared (ADAMK)
- Resolved #42567: Core dump in t/07busy.t after test 4 (mutex and/or memory corruption) (ADAMK)
1.19_07 Sat 4 Apr 2009
- Starting to work the RT queue now the basics are settled.
- Re-enable and fix t/70schemachange.t, as per RT #43448 (CORION)
- Added a canary test to probe for RT #36863 (segfault on OSX 10.5.2) (CORION)

View file

@ -8,7 +8,7 @@ use DynaLoader ();
use vars qw($VERSION @ISA);
use vars qw{$err $errstr $state $drh $sqlite_version};
BEGIN {
$VERSION = '1.19_07';
$VERSION = '1.19_08';
@ISA = ('DynaLoader');
$drh = undef;
}

View file

@ -9,7 +9,7 @@ use Test::More ();
use vars qw{$VERSION @ISA @EXPORT};
BEGIN {
$VERSION = '1.19_07';
$VERSION = '1.19_08';
@ISA = qw{ Exporter };
@EXPORT = qw{ connect_ok };
}