From 168096d771f8156c09a842f7484b5b09e758a07f Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Tue, 17 Feb 2015 15:57:21 +0900 Subject: [PATCH] releng 1.47_01 --- Changes | 11 ++++++++++- lib/DBD/SQLite.pm | 2 +- lib/DBD/SQLite/VirtualTable.pm | 2 +- t/lib/Test.pm | 2 +- 4 files changed, 13 insertions(+), 4 deletions(-) diff --git a/Changes b/Changes index fed4ae6..49b0a8d 100644 --- a/Changes +++ b/Changes @@ -1,7 +1,16 @@ Changes for Perl extension DBD-SQLite -1.47_01 to be released +1.47_01 2015-02-17 + *** (EXPERIMENTAL) CHANGES THAT MAY POSSIBLY BREAK YOUR OLD APPLICATIONS *** + - Commented OPTIMIZE out of WriteMakefile (RT #94207). + If your perl is not compiled with -O2, your DBD::SQLite may + possibly behave differently under some circumstances. + (This release is to find notable examples from CPAN Testers). + - Set THREADSAFE to 0 under Cygwin to cope with an upstream + regression since 3.8.7 (GH #7). + - Updated to SQLite 3.8.8.2 + - Resolved #35449: Fast DBH->do (ptushnik, ISHIGAKI) 1.46 2014-12-10 - Switched to a production version. (ISHIGAKI) diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index 43211de..d53ced8 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.46'; +our $VERSION = '1.47_01'; our @ISA = 'DynaLoader'; # sqlite_version cache (set in the XS bootstrap) diff --git a/lib/DBD/SQLite/VirtualTable.pm b/lib/DBD/SQLite/VirtualTable.pm index 0e9b5c1..68d3b3e 100644 --- a/lib/DBD/SQLite/VirtualTable.pm +++ b/lib/DBD/SQLite/VirtualTable.pm @@ -5,7 +5,7 @@ use strict; use warnings; use Scalar::Util qw/weaken/; -our $VERSION = '1.46'; +our $VERSION = '1.47_01'; our @ISA; diff --git a/t/lib/Test.pm b/t/lib/Test.pm index df9ce7d..851f840 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.46'; +our $VERSION = '1.47_01'; our @ISA = 'Exporter'; our @EXPORT = qw/connect_ok dies dbfile @CALL_FUNCS $sqlite_call has_sqlite requires_sqlite/; our @CALL_FUNCS;