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

releng 1.47_02

This commit is contained in:
Kenichi Ishigaki 2015-04-16 22:24:31 +09:00
parent 271886156b
commit 628393db5b
3 changed files with 9 additions and 4 deletions

View file

@ -1,7 +1,12 @@
Changes for Perl extension DBD-SQLite
1.47_02 to be released
- Updated to SQLite 3.8.8.3
1.47_02 2015-04-16
- Updated to SQLite 3.8.9
- Added DBD::SQLite::Constants, from which you can import any
"useful" constants into your applications.
- Removed previous Cygwin hack as SQLite 3.8.9 compiles well again
- Now create_function/aggregate accepts an extra bit
(SQLITE_DETERMINISTIC) for better performance.
1.47_01 2015-02-17
*** (EXPERIMENTAL) CHANGES THAT MAY POSSIBLY BREAK YOUR OLD APPLICATIONS ***

View file

@ -5,7 +5,7 @@ use strict;
use DBI 1.57 ();
use DynaLoader ();
our $VERSION = '1.47_01';
our $VERSION = '1.47_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.47_01';
our $VERSION = '1.47_02';
our @ISA;