From 13da736ed6ef8c3f4946dce69918437bdf25c551 Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Sat, 26 Jan 2019 07:19:04 +0900 Subject: [PATCH] release 1.63_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 81aaa24..a31deb4 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,12 @@ Changes for Perl extension DBD-SQLite +1.63_01 2019-01-26 + - Made sure an internal hv is initialized (GH#45) + - Fixed a number of tests to skip + - Bumped up Test::More requirement + - Replaced bundled Test::NoWarnings with Test::FailWarnings + - Handle 'unknown' op in DBD::SQLite::VirtualTable::PerlData (Corion++) + 1.62 2018-12-29 - Switched to a production version diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index f6b90e4..f4fbdf2 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.62'; +our $VERSION = '1.63_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 08d08e2..d63a188 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.62'; +our $VERSION = '1.63_01'; our @ISA;