From 52205ff115c2d60dc0135fa7bdf5ef3d0a57a27d Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Tue, 31 Aug 2010 15:23:24 +0000 Subject: [PATCH] updated Changes and versions just in case --- Changes | 4 ++++ SQLiteXS.h | 1 - lib/DBD/SQLite.pm | 2 +- t/lib/Test.pm | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Changes b/Changes index 8adba08..b1dc3c4 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ 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 - Test::NoWarnings bundled in the "inc" directory was ignored in a new test. (ISHIGAKI) diff --git a/SQLiteXS.h b/SQLiteXS.h index 584fb61..79b37f6 100644 --- a/SQLiteXS.h +++ b/SQLiteXS.h @@ -5,7 +5,6 @@ /************************************************************************ DBI Specific Stuff - Added by Matt Sergeant ************************************************************************/ -#define PERL_POLLUTE #define PERL_NO_GET_CONTEXT #include #include diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index c8602d2..abc8064 100644 --- a/lib/DBD/SQLite.pm +++ b/lib/DBD/SQLite.pm @@ -10,7 +10,7 @@ use vars qw{$err $errstr $drh $sqlite_version $sqlite_version_number}; use vars qw{%COLLATION}; BEGIN { - $VERSION = '1.30_05'; + $VERSION = '1.30_06'; @ISA = 'DynaLoader'; # Initialize errors diff --git a/t/lib/Test.pm b/t/lib/Test.pm index 487987d..060d737 100644 --- a/t/lib/Test.pm +++ b/t/lib/Test.pm @@ -10,7 +10,7 @@ use Test::More (); use vars qw{$VERSION @ISA @EXPORT @CALL_FUNCS}; my $parent; BEGIN { - $VERSION = '1.30_05'; + $VERSION = '1.30_06'; @ISA = 'Exporter'; @EXPORT = qw/connect_ok dies @CALL_FUNCS/;