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:
parent
90c018c655
commit
140d920c5a
3 changed files with 8 additions and 4 deletions
8
Changes
8
Changes
|
@ -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)
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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 };
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue