1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 14:19:10 -04:00

Release 1.67_04

This commit is contained in:
Kenichi Ishigaki 2021-05-31 07:53:52 +09:00
parent 791eaba2ac
commit 5c7779f889
3 changed files with 12 additions and 5 deletions

13
Changes
View file

@ -1,8 +1,15 @@
Changes for Perl extension DBD-SQLite Changes for Perl extension DBD-SQLite
1.67_04 to be released 1.67_04 2021-05-31
- Upgraded SQLite to 3.35.4 - Upgraded SQLite to 3.35.5
- Stop setting THREADSAFE=0 if perl has pthreads (ie. 5.20+) - 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 1.67_03 2021-03-31
- Upgraded SQLite to 3.35.3 - Upgraded SQLite to 3.35.3

View file

@ -5,7 +5,7 @@ use strict;
use DBI 1.57 (); use DBI 1.57 ();
use XSLoader (); use XSLoader ();
our $VERSION = '1.67_03'; our $VERSION = '1.67_04';
# sqlite_version cache (set in the XS bootstrap) # sqlite_version cache (set in the XS bootstrap)
our ($sqlite_version, $sqlite_version_number); our ($sqlite_version, $sqlite_version_number);

View file

@ -5,7 +5,7 @@ use strict;
use warnings; use warnings;
use Scalar::Util qw/weaken/; use Scalar::Util qw/weaken/;
our $VERSION = '1.67_03'; our $VERSION = '1.67_04';
our @ISA; our @ISA;