From e51324a7a3cfc3ea7f14c4e9117f3ba7ececac28 Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Tue, 24 Nov 2020 21:57:43 +0900 Subject: [PATCH] Release 1.67_01 --- Changes | 2 +- lib/DBD/SQLite.pm | 2 +- lib/DBD/SQLite/VirtualTable.pm | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Changes b/Changes index aa75bb2..0d6ee61 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,6 @@ Changes for Perl extension DBD-SQLite -1.67_01 to be released +1.67_01 2020-11-24 - Switched to XSLoader (GH#63; toddr++) - Use quadmath_snprintf if USE_QUADMATH is defined - Use av_fetch instead of av_shift (norimy++) diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index 996f9e7..cdfea18 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.66'; +our $VERSION = '1.67_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 677af15..e7d1fa8 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.66'; +our $VERSION = '1.67_01'; our @ISA;