From a7e04d785c3d4b25ace586b5465097ef1856cc3c Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Mon, 14 Jun 2021 12:48:15 +0900 Subject: [PATCH] Release 1.67_06 --- 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 d968c24..12b7494 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Changes for Perl extension DBD-SQLite +1.67_06 2021-06-14 + - Experiment with another quadmath patch to see if it works + with an older version of FreeBSD + 1.67_05 2021-06-13 - Made DBD_SQLITE_STRING_MODE constants exportable diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index 738c7d7..f97b08b 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.67_05'; +our $VERSION = '1.67_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 a87654b..21d2755 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.67_05'; +our $VERSION = '1.67_06'; our @ISA;