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

releng 1.55_04

This commit is contained in:
Kenichi Ishigaki 2017-11-22 02:06:38 +09:00
parent e3598578a8
commit 7adc107634
3 changed files with 4 additions and 3 deletions

View file

@ -1,6 +1,6 @@
Changes for Perl extension DBD-SQLite Changes for Perl extension DBD-SQLite
1.55_04 to be released 1.55_04 2017-11-22
- Updated SQLite to 3.21.0 - Updated SQLite to 3.21.0
- Resolved #122581: statistics_info() doesn't work correctly - Resolved #122581: statistics_info() doesn't work correctly
(John Deighan) (John Deighan)
@ -11,6 +11,7 @@ Changes for Perl extension DBD-SQLite
(GH#23, SATO Kentaro) (GH#23, SATO Kentaro)
- Fixed VirtualTable::PerlData to use new ops added in SQLite 3.21.0 - Fixed VirtualTable::PerlData to use new ops added in SQLite 3.21.0
(GH#28, fschlich) (GH#28, fschlich)
- noted on sqlite_extended_result_codes handle attribute
1.55_03 2017-02-14 1.55_03 2017-02-14
- Updated SQLite to 3.17.0 - Updated SQLite to 3.17.0

View file

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

View file

@ -5,7 +5,7 @@ use strict;
use warnings; use warnings;
use Scalar::Util qw/weaken/; use Scalar::Util qw/weaken/;
our $VERSION = '1.55_03'; our $VERSION = '1.55_04';
our @ISA; our @ISA;