From a7e5af7397f1230caebced5e698188efcacc749c Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Wed, 26 Oct 2022 03:35:56 +0900 Subject: [PATCH] Release 1.71_07 --- 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 2e2216d..54cfa1e 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Changes for Perl extension DBD-SQLite +1.71_07 2022-10-26 + - Upgraded SQLite to 3.39.4 + 1.71_06 2022-03-12 - Set UTF8CACHE to avoid slowdown with -DDEBUGGING (andk, Leont, FGasper) diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index b6920f5..8604db5 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_06'; +our $VERSION = '1.71_07'; # 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 0f62157..28e67ff 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_06'; +our $VERSION = '1.71_07'; our @ISA;