diff --git a/Changes b/Changes index 2e2216d..54cfa1e 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Changes for Perl extension DBD-SQLite +1.71_07 2022-10-26 + - Upgraded SQLite to 3.39.4 + 1.71_06 2022-03-12 - Set UTF8CACHE to avoid slowdown with -DDEBUGGING (andk, Leont, FGasper) diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index b6920f5..8604db5 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.71_06'; +our $VERSION = '1.71_07'; # 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 0f62157..28e67ff 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.71_06'; +our $VERSION = '1.71_07'; our @ISA;