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

updated Changes and versions just in case

This commit is contained in:
Kenichi Ishigaki 2010-08-31 15:23:24 +00:00
parent 9829e0f090
commit 52205ff115
4 changed files with 6 additions and 3 deletions

View file

@ -1,5 +1,9 @@
Changes for Perl extension DBD-SQLite Changes for Perl extension DBD-SQLite
1.30_06 to be released
- Resolved # 60860: Slow but steady memory leak on
last_insert_id calls (ISHIGAKI)
1.30_05 Fri 27 Aug 2010 1.30_05 Fri 27 Aug 2010
- Test::NoWarnings bundled in the "inc" directory was ignored - Test::NoWarnings bundled in the "inc" directory was ignored
in a new test. (ISHIGAKI) in a new test. (ISHIGAKI)

View file

@ -5,7 +5,6 @@
/************************************************************************ /************************************************************************
DBI Specific Stuff - Added by Matt Sergeant DBI Specific Stuff - Added by Matt Sergeant
************************************************************************/ ************************************************************************/
#define PERL_POLLUTE
#define PERL_NO_GET_CONTEXT #define PERL_NO_GET_CONTEXT
#include <EXTERN.h> #include <EXTERN.h>
#include <perl.h> #include <perl.h>

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_05'; $VERSION = '1.30_06';
@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_05'; $VERSION = '1.30_06';
@ISA = 'Exporter'; @ISA = 'Exporter';
@EXPORT = qw/connect_ok dies @CALL_FUNCS/; @EXPORT = qw/connect_ok dies @CALL_FUNCS/;