diff --git a/Changes b/Changes index 0ecf61f..14c7ec0 100644 --- a/Changes +++ b/Changes @@ -1,7 +1,8 @@ Changes for Perl extension DBD-SQLite -1.43_03 not yet released - - Updated to SQLite 3.8.5 (ISHIGAKI) +1.43_03 2014-06-12 + - Updated to SQLite 3.8.5, which should fix query planner's + issues in SQLite (ISHIGAKI) - Fixed busy_timeout to accept 0 to disable (reported by zdm) (ISHIGAKI) - Resolved #95511: primary_key_info fails to return names for diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index 217de01..ab45627 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_02'; +our $VERSION = '1.43_03'; our @ISA = 'DynaLoader'; # sqlite_version cache (set in the XS bootstrap) diff --git a/t/lib/Test.pm b/t/lib/Test.pm index 0bd2617..c8ec8e6 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_02'; +our $VERSION = '1.43_03'; our @ISA = 'Exporter'; our @EXPORT = qw/connect_ok dies dbfile @CALL_FUNCS/; our @CALL_FUNCS;