diff --git a/Changes b/Changes index b0daed5..b358480 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,10 @@ Changes for Perl extension DBD-SQLite +1.67_03 2021-03-31 + - Upgraded SQLite to 3.35.3 + - Enabled math functions introduced in SQLite 3.35 + - Fix quadmath issues (Tux++, leont++) + 1.67_02 2020-12-06 - Upgraded SQLite to 3.34.0 - Added a few new constants diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index 1951e1c..9453861 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_02'; +our $VERSION = '1.67_03'; # 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 3bf61fa..103a216 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_02'; +our $VERSION = '1.67_03'; our @ISA;