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

Preparing for production release

This commit is contained in:
Adam Kennedy 2010-09-15 07:16:07 +00:00
parent 174f2050f0
commit a41737d141
3 changed files with 5 additions and 2 deletions

View file

@ -1,5 +1,8 @@
Changes for Perl extension DBD-SQLite Changes for Perl extension DBD-SQLite
1.31 Wed 15 Sep 2010
- Production release, identical to 1.30_06
1.30_06 Thu 9 Sep 2010 1.30_06 Thu 9 Sep 2010
- Resolved # 60860: Slow but steady memory leak on - Resolved # 60860: Slow but steady memory leak on
last_insert_id calls (ISHIGAKI) last_insert_id calls (ISHIGAKI)

View file

@ -10,7 +10,7 @@ use vars qw{$err $errstr $drh $sqlite_version $sqlite_version_number};
use vars qw{%COLLATION}; use vars qw{%COLLATION};
BEGIN { BEGIN {
$VERSION = '1.30_06'; $VERSION = '1.31';
@ISA = 'DynaLoader'; @ISA = 'DynaLoader';
# Initialize errors # Initialize errors

View file

@ -10,7 +10,7 @@ use Test::More ();
use vars qw{$VERSION @ISA @EXPORT @CALL_FUNCS}; use vars qw{$VERSION @ISA @EXPORT @CALL_FUNCS};
my $parent; my $parent;
BEGIN { BEGIN {
$VERSION = '1.30_06'; $VERSION = '1.31';
@ISA = 'Exporter'; @ISA = 'Exporter';
@EXPORT = qw/connect_ok dies @CALL_FUNCS/; @EXPORT = qw/connect_ok dies @CALL_FUNCS/;