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

release 1.61_01

This commit is contained in:
Kenichi Ishigaki 2018-12-01 16:58:18 +09:00
parent 7ee8310ae7
commit 315b86627d
3 changed files with 9 additions and 2 deletions

View file

@ -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

View file

@ -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)

View file

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