From 938f22eb6c41cba2c27b1931067f7524d1ed0a12 Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Thu, 12 Jun 2014 13:59:25 +0900 Subject: [PATCH] releng 1.43_03 --- Changes | 5 +++-- lib/DBD/SQLite.pm | 2 +- t/lib/Test.pm | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) 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;