From 7adc107634e7d21d30f8b9d6b17e0242044a47c3 Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Wed, 22 Nov 2017 02:06:38 +0900 Subject: [PATCH] releng 1.55_04 --- Changes | 3 ++- lib/DBD/SQLite.pm | 2 +- lib/DBD/SQLite/VirtualTable.pm | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Changes b/Changes index d24c342..a27b883 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,6 @@ Changes for Perl extension DBD-SQLite -1.55_04 to be released +1.55_04 2017-11-22 - Updated SQLite to 3.21.0 - Resolved #122581: statistics_info() doesn't work correctly (John Deighan) @@ -11,6 +11,7 @@ Changes for Perl extension DBD-SQLite (GH#23, SATO Kentaro) - Fixed VirtualTable::PerlData to use new ops added in SQLite 3.21.0 (GH#28, fschlich) + - noted on sqlite_extended_result_codes handle attribute 1.55_03 2017-02-14 - Updated SQLite to 3.17.0 diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index 07d96d5..9b06fb5 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.55_03'; +our $VERSION = '1.55_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 4a3967c..1bc24a6 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.55_03'; +our $VERSION = '1.55_04'; our @ISA;