mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-07 22:28:47 -04:00
releng 1.47_01
This commit is contained in:
parent
15778b997a
commit
168096d771
4 changed files with 13 additions and 4 deletions
11
Changes
11
Changes
|
@ -1,7 +1,16 @@
|
||||||
Changes for Perl extension DBD-SQLite
|
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
|
- Updated to SQLite 3.8.8.2
|
||||||
|
- Resolved #35449: Fast DBH->do (ptushnik, ISHIGAKI)
|
||||||
|
|
||||||
1.46 2014-12-10
|
1.46 2014-12-10
|
||||||
- Switched to a production version. (ISHIGAKI)
|
- Switched to a production version. (ISHIGAKI)
|
||||||
|
|
|
@ -5,7 +5,7 @@ use strict;
|
||||||
use DBI 1.57 ();
|
use DBI 1.57 ();
|
||||||
use DynaLoader ();
|
use DynaLoader ();
|
||||||
|
|
||||||
our $VERSION = '1.46';
|
our $VERSION = '1.47_01';
|
||||||
our @ISA = 'DynaLoader';
|
our @ISA = 'DynaLoader';
|
||||||
|
|
||||||
# sqlite_version cache (set in the XS bootstrap)
|
# sqlite_version cache (set in the XS bootstrap)
|
||||||
|
|
|
@ -5,7 +5,7 @@ use strict;
|
||||||
use warnings;
|
use warnings;
|
||||||
use Scalar::Util qw/weaken/;
|
use Scalar::Util qw/weaken/;
|
||||||
|
|
||||||
our $VERSION = '1.46';
|
our $VERSION = '1.47_01';
|
||||||
our @ISA;
|
our @ISA;
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ use Exporter ();
|
||||||
use File::Spec ();
|
use File::Spec ();
|
||||||
use Test::More ();
|
use Test::More ();
|
||||||
|
|
||||||
our $VERSION = '1.46';
|
our $VERSION = '1.47_01';
|
||||||
our @ISA = 'Exporter';
|
our @ISA = 'Exporter';
|
||||||
our @EXPORT = qw/connect_ok dies dbfile @CALL_FUNCS $sqlite_call has_sqlite requires_sqlite/;
|
our @EXPORT = qw/connect_ok dies dbfile @CALL_FUNCS $sqlite_call has_sqlite requires_sqlite/;
|
||||||
our @CALL_FUNCS;
|
our @CALL_FUNCS;
|
||||||
|
|
Loading…
Add table
Reference in a new issue