From fc64c4688a208b15ebf2ef47d36e5f9f2ff33a0c Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Sat, 26 Feb 2022 11:38:46 +0900 Subject: [PATCH] Release 1.71_05 --- Changes | 4 ++++ lib/DBD/SQLite.pm | 2 +- lib/DBD/SQLite/VirtualTable.pm | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Changes b/Changes index 1820a3d..0e8e16c 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Changes for Perl extension DBD-SQLite +1.71_05 2022-02-26 + - Fix another test failure on perl built with -DDEBUGGING + - Lowercase datatype in table column metadata for backcompat + 1.71_04 2022-02-26 - Fix test failure on perl built with -DDEBUGGING (andk++) diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index 070e033..2b319d5 100644 --- a/lib/DBD/SQLite.pm +++ b/lib/DBD/SQLite.pm @@ -5,7 +5,7 @@ use strict; use DBI 1.57 (); use XSLoader (); -our $VERSION = '1.71_04'; +our $VERSION = '1.71_05'; # sqlite_version cache (set in the XS bootstrap) our ($sqlite_version, $sqlite_version_number); diff --git a/lib/DBD/SQLite/VirtualTable.pm b/lib/DBD/SQLite/VirtualTable.pm index cfc4df9..b60c9eb 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.71_04'; +our $VERSION = '1.71_05'; our @ISA;