From 6e89c499b4611977024712ee9f22c3b12d66d3f9 Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Thu, 14 Feb 2019 04:08:12 +0900 Subject: [PATCH] release 1.63_02 --- Changes | 5 +++++ lib/DBD/SQLite.pm | 2 +- lib/DBD/SQLite/VirtualTable.pm | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Changes b/Changes index a31deb4..715292f 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,10 @@ Changes for Perl extension DBD-SQLite +1.63_02 2019-02-14 + - Upgraded SQLite to 3.27.1 + - Let a URI filename test skip if SQLite is compiled with URI filename + support (GH#47) + 1.63_01 2019-01-26 - Made sure an internal hv is initialized (GH#45) - Fixed a number of tests to skip diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index 3134f6a..bd9395d 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.63_01'; +our $VERSION = '1.63_02'; 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 d63a188..47b75d3 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.63_01'; +our $VERSION = '1.63_02'; our @ISA;