diff --git a/Changes b/Changes index c315c06..96039c2 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,10 @@ Changes for Perl extension DBD-SQLite +1.43_09 2014-10-20 + - Resolved #99583: Legacy DOS 8.3 filename support incompatible + with SQLITE WAL journal mode (spotted by Pat Horton) (ISHIGAKI) + - 1.43_07/08 were not VC6 compatible (ISHIGAKI) + 1.43_08 2014-08-21 - Updated to SQLite 3.8.6, which should fix a unique index issue: see http://www.sqlite.org/src/info/9a6daf340df99ba93c diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index 7a6a19b..2e1d22a 100644 --- a/lib/DBD/SQLite.pm +++ b/lib/DBD/SQLite.pm @@ -5,7 +5,7 @@ use strict; use DBI 1.57 (); use DynaLoader (); -our $VERSION = '1.43_08'; +our $VERSION = '1.43_09'; our @ISA = 'DynaLoader'; # sqlite_version cache (set in the XS bootstrap) diff --git a/t/lib/Test.pm b/t/lib/Test.pm index 37a1601..8d01208 100644 --- a/t/lib/Test.pm +++ b/t/lib/Test.pm @@ -7,7 +7,7 @@ use Exporter (); use File::Spec (); use Test::More (); -our $VERSION = '1.43_08'; +our $VERSION = '1.43_09'; our @ISA = 'Exporter'; our @EXPORT = qw/connect_ok dies dbfile @CALL_FUNCS/; our @CALL_FUNCS;