From fb1cf99dde0d8828bf2479ff560877f3b90a6ba4 Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Sat, 29 Dec 2018 02:57:17 +0900 Subject: [PATCH] release 1.62 --- Changes | 3 +++ lib/DBD/SQLite.pm | 2 +- lib/DBD/SQLite/VirtualTable.pm | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Changes b/Changes index b4247c4..81aaa24 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Changes for Perl extension DBD-SQLite +1.62 2018-12-29 + - Switched to a production version + 1.61_04 2018-12-22 - Added sqlite_db_config method and new constants for it - Added sqlite_defensive option to disallow dangerous SQLite features diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index e4f7544..f6b90e4 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.61_04'; +our $VERSION = '1.62'; 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 de5fed3..08d08e2 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.61_04'; +our $VERSION = '1.62'; our @ISA;