1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 14:19:10 -04:00

release 1.63_04

This commit is contained in:
Kenichi Ishigaki 2019-05-25 01:39:09 +09:00
parent e3bce4ab39
commit 685c944cb5
3 changed files with 4 additions and 3 deletions

View file

@ -1,9 +1,10 @@
Changes for Perl extension DBD-SQLite Changes for Perl extension DBD-SQLite
1.63_04 to be released 1.63_04 2019-05-25
- Upgraded SQLite to 3.28.0 - Upgraded SQLite to 3.28.0
- Modified doc for sqlite_db_filename which actually returns undef - Modified doc for sqlite_db_filename which actually returns undef
or an empty string (GH#50) or an empty string (GH#50)
- Fixed ->quote($blob, SQL_BLOB) to quote correctly (GH#51, pali++)
1.63_03 2019-02-15 1.63_03 2019-02-15
- Applied a patch to fix segmentation fault on 32-bit big-endian - Applied a patch to fix segmentation fault on 32-bit big-endian

View file

@ -5,7 +5,7 @@ use strict;
use DBI 1.57 (); use DBI 1.57 ();
use DynaLoader (); use DynaLoader ();
our $VERSION = '1.63_03'; our $VERSION = '1.63_04';
our @ISA = 'DynaLoader'; our @ISA = 'DynaLoader';
# sqlite_version cache (set in the XS bootstrap) # sqlite_version cache (set in the XS bootstrap)

View file

@ -5,7 +5,7 @@ use strict;
use warnings; use warnings;
use Scalar::Util qw/weaken/; use Scalar::Util qw/weaken/;
our $VERSION = '1.63_03'; our $VERSION = '1.63_04';
our @ISA; our @ISA;