From 353f185cc522df21515d4cb77add80d9587e3379 Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Sat, 12 Mar 2022 11:51:36 +0900 Subject: [PATCH] Release 1.71_06 --- Changes | 3 +++ lib/DBD/SQLite.pm | 2 +- lib/DBD/SQLite/VirtualTable.pm | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Changes b/Changes index 0e8e16c..2e2216d 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Changes for Perl extension DBD-SQLite +1.71_06 2022-03-12 + - Set UTF8CACHE to avoid slowdown with -DDEBUGGING (andk, Leont, FGasper) + 1.71_05 2022-02-26 - Fix another test failure on perl built with -DDEBUGGING - Lowercase datatype in table column metadata for backcompat diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index 2b319d5..f1a78b6 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_05'; +our $VERSION = '1.71_06'; # 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 b60c9eb..0f62157 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_05'; +our $VERSION = '1.71_06'; our @ISA;