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_01

This commit is contained in:
Kenichi Ishigaki 2015-02-17 15:57:21 +09:00
parent 15778b997a
commit 168096d771
4 changed files with 13 additions and 4 deletions

11
Changes
View file

@ -1,7 +1,16 @@
Changes for Perl extension DBD-SQLite
1.47_01 to be released
1.47_01 2015-02-17
*** (EXPERIMENTAL) CHANGES THAT MAY POSSIBLY BREAK YOUR OLD APPLICATIONS ***
- Commented OPTIMIZE out of WriteMakefile (RT #94207).
If your perl is not compiled with -O2, your DBD::SQLite may
possibly behave differently under some circumstances.
(This release is to find notable examples from CPAN Testers).
- Set THREADSAFE to 0 under Cygwin to cope with an upstream
regression since 3.8.7 (GH #7).
- Updated to SQLite 3.8.8.2
- Resolved #35449: Fast DBH->do (ptushnik, ISHIGAKI)
1.46 2014-12-10
- Switched to a production version. (ISHIGAKI)

View file

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

View file

@ -7,7 +7,7 @@ use Exporter ();
use File::Spec ();
use Test::More ();
our $VERSION = '1.46';
our $VERSION = '1.47_01';
our @ISA = 'Exporter';
our @EXPORT = qw/connect_ok dies dbfile @CALL_FUNCS $sqlite_call has_sqlite requires_sqlite/;
our @CALL_FUNCS;