From 198ae95635aa38fdd0f5d74aa50f81012643f419 Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Sun, 30 Sep 2018 15:08:54 +0900 Subject: [PATCH] release 1.59_02 --- 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 024855c..776fc25 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Changes for Perl extension DBD-SQLite +1.59_02 2018-09-30 + - Upgraded SQLite to 3.25.2 + 1.59_01 2018-09-17 - Upgraded SQLite to 3.25.0, with ALTER TABLE ... RENAME COLUMN and UPSERT among others diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index 8fa1095..2cbabde 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.59_01'; +our $VERSION = '1.59_02'; 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 f00816c..180b621 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.59_01'; +our $VERSION = '1.59_02'; our @ISA;