From fc57bda440f01f941f3a0bd71db04e89b4f3afbf Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Thu, 9 Jan 2014 02:43:43 +0900 Subject: [PATCH] releng 1.41_04 --- Changes | 7 +++++-- lib/DBD/SQLite.pm | 2 +- t/lib/Test.pm | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/Changes b/Changes index 96d2e03..85fc178 100644 --- a/Changes +++ b/Changes @@ -1,10 +1,13 @@ Changes for Perl extension DBD-SQLite -{{$NEXT}} - - Updated to SQLite 3.8.1 (ISHIGAKI) +1.41_04 Thu 9 Jan 2014 + - Updated to SQLite 3.8.2 (ISHIGAKI) - Resolved #90211: Error in documentation (Felix Li) - Resolved #89351: DBD-SQLite won't compile on Cygwin 64 bit (Warren Young++) (ISHIGAKI) + - Tweaked sqlite_see_if_its_a_number not to guess data types of + bind values with explicit type specification (via bind_param() + etc) (mje++, ilmari++) (ISHIGAKI) 1.41_03 Thu 5 Sep 2013 - Updated to SQLite 3.8.0.2 (ISHIGAKI) diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index 3db3431..0158470 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.41_03'; +our $VERSION = '1.41_04'; our @ISA = 'DynaLoader'; # sqlite_version cache (set in the XS bootstrap) diff --git a/t/lib/Test.pm b/t/lib/Test.pm index bfd9163..9376fd4 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.41_03'; +our $VERSION = '1.41_04'; our @ISA = 'Exporter'; our @EXPORT = qw/connect_ok dies dbfile @CALL_FUNCS/; our @CALL_FUNCS;