From 93bd77e7d70dd53f8ba80887e254df9e9420f1ce Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Sat, 2 May 2015 02:35:04 +0900 Subject: [PATCH] releng 1.47_04 --- Changes | 3 +++ lib/DBD/SQLite.pm | 2 +- lib/DBD/SQLite/VirtualTable.pm | 2 +- t/lib/Test.pm | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Changes b/Changes index c8818c3..c235e31 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Changes for Perl extension DBD-SQLite +1.47_04 2015-05-02 + - Used MY_CXT instead of a global variable + 1.47_03 2015-04-16 - Added :all to EXPORT_TAGS in ::Constants diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index 9a18362..91959a3 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.47_03'; +our $VERSION = '1.47_04'; 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 8d92da7..5fb967b 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.47_03'; +our $VERSION = '1.47_04'; our @ISA; diff --git a/t/lib/Test.pm b/t/lib/Test.pm index 6a85fff..62e1daf 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.47_03'; +our $VERSION = '1.47_04'; our @ISA = 'Exporter'; our @EXPORT = qw/connect_ok dies dbfile @CALL_FUNCS $sqlite_call has_sqlite requires_sqlite/; our @CALL_FUNCS;