diff --git a/Changes b/Changes index 38131ea..201cdd9 100644 --- a/Changes +++ b/Changes @@ -1,9 +1,10 @@ Changes for Perl extension DBD-SQLite -1.63_04 to be released +1.63_04 2019-05-25 - Upgraded SQLite to 3.28.0 - Modified doc for sqlite_db_filename which actually returns undef or an empty string (GH#50) + - Fixed ->quote($blob, SQL_BLOB) to quote correctly (GH#51, pali++) 1.63_03 2019-02-15 - Applied a patch to fix segmentation fault on 32-bit big-endian diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index 0cb16a9..3250f71 100644 --- a/lib/DBD/SQLite.pm +++ b/lib/DBD/SQLite.pm @@ -5,7 +5,7 @@ use strict; use DBI 1.57 (); use DynaLoader (); -our $VERSION = '1.63_03'; +our $VERSION = '1.63_04'; our @ISA = 'DynaLoader'; # sqlite_version cache (set in the XS bootstrap) diff --git a/lib/DBD/SQLite/VirtualTable.pm b/lib/DBD/SQLite/VirtualTable.pm index 0658eab..2747df7 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.63_03'; +our $VERSION = '1.63_04'; our @ISA;