1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 06:08:38 -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
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

View file

@ -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)

View file

@ -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;