From dd9df3efea110a8f45e456bda489300f4227ce4a Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Fri, 15 Feb 2019 01:55:00 +0900 Subject: [PATCH] release 1.63_03 --- Changes | 4 ++++ lib/DBD/SQLite.pm | 2 +- lib/DBD/SQLite/VirtualTable.pm | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Changes b/Changes index 715292f..d39b964 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ 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 - Upgraded SQLite to 3.27.1 - Let a URI filename test skip if SQLite is compiled with URI filename diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index bd9395d..4333415 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_02'; +our $VERSION = '1.63_03'; 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 47b75d3..0658eab 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_02'; +our $VERSION = '1.63_03'; our @ISA;