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;