From 0de40139bf864d52f3d0095e8d8952bafa43bfca Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Wed, 26 Nov 2014 17:52:00 +0900 Subject: [PATCH] releng 1.45_06 --- Changes | 5 +++++ lib/DBD/SQLite.pm | 2 +- lib/DBD/SQLite/VirtualTable.pm | 2 +- t/lib/Test.pm | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/Changes b/Changes index 50ddcfc..c78f345 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,10 @@ Changes for Perl extension DBD-SQLite +1.45_06 2014-11-26 + - Silenced a compile-time warning (Unescaped left brace + in regex is deprecated) in PerlData virtual table + under bleadperl + 1.45_05 2014-11-25 - Updated to SQLite 3.8.7.2 - Restored regexp support in PerlData virtual table diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index 851f882..07de781 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.45_05'; +our $VERSION = '1.45_06'; 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 9fb6d5d..95228b2 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.45_05'; +our $VERSION = '1.45_06'; our @ISA; diff --git a/t/lib/Test.pm b/t/lib/Test.pm index e18c2ba..9735765 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.45_05'; +our $VERSION = '1.45_06'; our @ISA = 'Exporter'; our @EXPORT = qw/connect_ok dies dbfile @CALL_FUNCS $sqlite_call/; our @CALL_FUNCS;