From d958b05c1d1ffafeb13660b54e73fffd4c9cee35 Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Sat, 18 Jan 2020 10:53:56 +0900 Subject: [PATCH] Release 1.65_01 --- Changes | 7 +++++++ lib/DBD/SQLite.pm | 2 +- lib/DBD/SQLite/VirtualTable.pm | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/Changes b/Changes index 5d106f9..11c33b4 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,12 @@ Changes for Perl extension DBD-SQLite +1.65_01 2020-01-18 + - Upgraded SQLite to 3.30.1 + - Added several SQL_ types as alias (pali++) + - Fixed two initialization issues (ppisar++) + - Allowed create_function to return an array reference + to specify the type of the value + 1.64 2019-08-12 - Switched to a production version diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index 47004e3..acf60ca 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.64'; +our $VERSION = '1.65_01'; 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 c8fa25c..2c75092 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.64'; +our $VERSION = '1.65_01'; our @ISA;