From d465ea92190beba499dbee7caade7dd184790735 Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Thu, 2 Dec 2021 02:00:43 +0900 Subject: [PATCH] Release 1.71_01 --- Changes | 2 ++ lib/DBD/SQLite.pm | 2 +- lib/DBD/SQLite/VirtualTable.pm | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Changes b/Changes index f7339cc..fc6e8fc 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,8 @@ Changes for Perl extension DBD-SQLite 1.71_01 to be released + - Upgraded SQLite to 3.37.0 + - Add a feature to unregister a created function - Fix accented characters in POD (GH#90, HaraldJoerg++) 1.70 2021-08-01 diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index bbd1ae4..eac40a4 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.70'; +our $VERSION = '1.71_01'; # 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 ac72ce9..f1743a4 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.70'; +our $VERSION = '1.71_01'; our @ISA;