From 315b86627d866bccdda34f321adcd4170d3911ea Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Sat, 1 Dec 2018 16:58:18 +0900 Subject: [PATCH] release 1.61_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 175edc1..d599a89 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,12 @@ Changes for Perl extension DBD-SQLite +1.61_01 2018-12-01 + - Added ability to configure SQLITE_MAX_LENGT with environmental + variable (Roy Storey) + - Added sqlite_limit database handle method to change run-time limits + - Upgraded SQLite to 3.25.3 + - Updated constants + 1.60 2018-12-01 - Switched to a production version diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index 1a52fbe..f676b2f 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.60'; +our $VERSION = '1.61_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 4881aa5..51b195b 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.60'; +our $VERSION = '1.61_01'; our @ISA;