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_03

This commit is contained in:
Kenichi Ishigaki 2019-02-15 01:55:00 +09:00
parent 8b758bfbbf
commit dd9df3efea
3 changed files with 6 additions and 2 deletions

View file

@ -1,5 +1,9 @@
Changes for Perl extension DBD-SQLite Changes for Perl extension DBD-SQLite
1.63_03 2019-02-15
- Applied a patch to fix segmentation fault on 32-bit big-endian
platforms by Niko Tyni (GH#45)
1.63_02 2019-02-14 1.63_02 2019-02-14
- Upgraded SQLite to 3.27.1 - Upgraded SQLite to 3.27.1
- Let a URI filename test skip if SQLite is compiled with URI filename - Let a URI filename test skip if SQLite is compiled with URI filename

View file

@ -5,7 +5,7 @@ use strict;
use DBI 1.57 (); use DBI 1.57 ();
use DynaLoader (); use DynaLoader ();
our $VERSION = '1.63_02'; our $VERSION = '1.63_03';
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_02'; our $VERSION = '1.63_03';
our @ISA; our @ISA;