From 140d920c5a11f7a2c24cc96bc132d866a78730d7 Mon Sep 17 00:00:00 2001 From: Adam Kennedy Date: Sat, 4 Apr 2009 02:41:25 +0000 Subject: [PATCH] Confirming a couple of old tickets are fixed --- Changes | 8 ++++++-- lib/DBD/SQLite.pm | 2 +- t/lib/Test.pm | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/Changes b/Changes index 5a0db02..2aa40a0 100644 --- a/Changes +++ b/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) diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index d0ee899..24cba71 100644 --- a/lib/DBD/SQLite.pm +++ b/lib/DBD/SQLite.pm @@ -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; } diff --git a/t/lib/Test.pm b/t/lib/Test.pm index 99a3141..3b950e1 100644 --- a/t/lib/Test.pm +++ b/t/lib/Test.pm @@ -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 }; }