From 5c7779f88949933d4ed0603bddca02d94d4ab6bc Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Mon, 31 May 2021 07:53:52 +0900 Subject: [PATCH] Release 1.67_04 --- Changes | 13 ++++++++++--- lib/DBD/SQLite.pm | 2 +- lib/DBD/SQLite/VirtualTable.pm | 2 +- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/Changes b/Changes index d6d05aa..c95e15c 100644 --- a/Changes +++ b/Changes @@ -1,8 +1,15 @@ Changes for Perl extension DBD-SQLite -1.67_04 to be released - - Upgraded SQLite to 3.35.4 - - Stop setting THREADSAFE=0 if perl has pthreads (ie. 5.20+) +1.67_04 2021-05-31 + - Upgraded SQLite to 3.35.5 + - Stop setting THREADSAFE=0 if perl has pthread (ie. 5.20+) + (Bjoern Hoehrmann++, GH#69, #72) + - Fixed a memory leak in ::VirtualTable + - Introduced "string_mode" handle attribute (Felipe Gasper++) + to fix long-standing issues of sqlite_unicode (GH#78, #68) + - Added a dependency from dbdimp.o to the *.inc files included + into dbdimp.c (Laurent Dami++, GH#74) + - Fixed an offset issue of VirtualTable (Laurent Dami++, GH#75) 1.67_03 2021-03-31 - Upgraded SQLite to 3.35.3 diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index 6a48057..f76f3b2 100644 --- a/lib/DBD/SQLite.pm +++ b/lib/DBD/SQLite.pm @@ -5,7 +5,7 @@ use strict; use DBI 1.57 (); use XSLoader (); -our $VERSION = '1.67_03'; +our $VERSION = '1.67_04'; # sqlite_version cache (set in the XS bootstrap) our ($sqlite_version, $sqlite_version_number); diff --git a/lib/DBD/SQLite/VirtualTable.pm b/lib/DBD/SQLite/VirtualTable.pm index 103a216..61960fc 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.67_03'; +our $VERSION = '1.67_04'; our @ISA;