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

release 1.61_02

This commit is contained in:
Kenichi Ishigaki 2018-12-01 18:08:01 +09:00
parent 954ab8f289
commit c02316e38b
3 changed files with 10 additions and 2 deletions

View file

@ -1,5 +1,13 @@
Changes for Perl extension DBD-SQLite
1.61_02 2018-12-01
- Added sqlite_backup_from_dbh/sqlite_backup_to_dbh methods
- Introduced sqlite_prefer_numeric_type database handle attribute
that changes the value of TYPE statement handle attribute
from an array of string to an array of integer, as an experimental
feature. Setting this may break your applications.
- Changed preferred bugtracker
1.61_01 2018-12-01
- Added ability to configure SQLITE_MAX_LENGT with environmental
variable (Roy Storey)

View file

@ -5,7 +5,7 @@ use strict;
use DBI 1.57 ();
use DynaLoader ();
our $VERSION = '1.61_01';
our $VERSION = '1.61_02';
our @ISA = 'DynaLoader';
# sqlite_version cache (set in the XS bootstrap)

View file

@ -5,7 +5,7 @@ use strict;
use warnings;
use Scalar::Util qw/weaken/;
our $VERSION = '1.61_01';
our $VERSION = '1.61_02';
our @ISA;