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;