From 94305d4df0729681cce17c28acfc6623f0646f61 Mon Sep 17 00:00:00 2001 From: Adam Kennedy Date: Sat, 28 Mar 2009 16:38:47 +0000 Subject: [PATCH] Final prep for release --- Changes | 17 +++++++++-------- TODO | 27 --------------------------- lib/DBD/SQLite.pm | 41 ++++++++++++++++++++++++++++++++++++++--- 3 files changed, 47 insertions(+), 38 deletions(-) delete mode 100644 TODO diff --git a/Changes b/Changes index fecdaa1..f7c17fe 100644 --- a/Changes +++ b/Changes @@ -1,20 +1,21 @@ -Revision history for Perl extension DBD::SQLite. +Revision history for Perl extension DBD-SQLite. -1.19_02 not yet released +1.19_02 Sun 29 Mar 2009 - Updated to SQLite 3.6.11 (ISHIGAKI) - - added/updated several prototypes + - Added/updated several prototypes (ISHIGAKI) + - Moved TODO into the POD (ADAMK) 1.19_01 Fri 27 Mar 2009 - Updated to SQLite 3.6.10, and bumped up the version requirement for installed sqlite3 to 3.6.0 as 3.6.x has backward incompatiblity (ISHIGAKI) - - fixed "closing dbh with active statement handles" issue + - Fixed "closing dbh with active statement handles" issue with a patch by TOKUHIROM. (ISHIGAKI) - - skip 70schemachange test for Windows users. (ISHIGAKI) - - applied RT patches including #29497, #32723, #30558, + - Skip 70schemachange test for Windows users. (ISHIGAKI) + - Applied RT patches including #29497, #32723, #30558, #34408, #36467, #37215, #41047. (ISHIGAKI) - - added TODO to show which issues are to be fixed. (ISHIGAKI) - - license and configure_requires in Makefile.PL and META.yml (Alexandr Ciornii) + - Added TODO to show which issues are to be fixed. (ISHIGAKI) + - License and configure_requires in Makefile.PL and META.yml (Alexandr Ciornii) - Spelling check for SQLite.pm (Alexandr Ciornii) - Adding arbitrary Perl 5.005 minimum diff --git a/TODO b/TODO deleted file mode 100644 index 8dfa19b..0000000 --- a/TODO +++ /dev/null @@ -1,27 +0,0 @@ -There're several pended RT bugs/patches at the moment (mainly due to the lack of tests/patches or segfaults on tests). Here's the list. - -http://rt.cpan.org/Public/Bug/Display.html?id=41631 -(patch required) - -http://rt.cpan.org/Public/Bug/Display.html?id=40594 -(patch required, and the following tests may break) - -http://rt.cpan.org/Public/Bug/Display.html?id=30167 -(need to see what is the best solution right now) - -http://rt.cpan.org/Public/Bug/Display.html?id=34828 -(segfault while testing under Windows) - -http://rt.cpan.org/Public/Bug/Display.html?id=36836 -(patch required) - -http://rt.cpan.org/Public/Bug/Display.html?id=13631 -(test required) - -http://rt.cpan.org/Public/Bug/Display.html?id=35449 -(break tests) - -http://rt.cpan.org/Public/Bug/Display.html?id=29629 -(patch required) - -Maybe we need to switch to Test::More to support TODO tests. diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index 9be478e..689ecd8 100644 --- a/lib/DBD/SQLite.pm +++ b/lib/DBD/SQLite.pm @@ -2,15 +2,17 @@ package DBD::SQLite; use 5.005; use strict; -use DBI; +use DBI (); use DynaLoader(); -use vars qw($err $errstr $state $drh $VERSION @ISA); +use vars qw($VERSION @ISA); BEGIN { - $VERSION = '1.19_01'; + $VERSION = '1.19_02'; @ISA = ('DynaLoader'); } +use vars qw{$err $errstr $state $drh }; + __PACKAGE__->bootstrap($VERSION); $drh = undef; @@ -595,6 +597,39 @@ Bugs should be reported via the CPAN bug tracker at L +=head1 TO DO + +There're several pended RT bugs/patches at the moment +(mainly due to the lack of tests/patches or segfaults on tests). + +Here's the list. + +L +(patch required) + +L +(patch required, and the following tests may break) + +L +(need to see what is the best solution right now) + +L +(segfault while testing under Windows) + +L +(patch required) + +L +(test required) + +L +(break tests) + +L +(patch required) + +Switch tests to Test::More to support more advanced testing behaviours + =head1 AUTHOR Matt Sergeant Ematt@sergeant.orgE