mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-07 14:19:10 -04:00
Final prep for release
This commit is contained in:
parent
521eeea05a
commit
94305d4df0
3 changed files with 47 additions and 38 deletions
17
Changes
17
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
|
||||
|
||||
|
|
27
TODO
27
TODO
|
@ -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.
|
|
@ -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<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=DBD-SQLite>
|
||||
|
||||
=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<http://rt.cpan.org/Public/Bug/Display.html?id=41631>
|
||||
(patch required)
|
||||
|
||||
L<http://rt.cpan.org/Public/Bug/Display.html?id=40594>
|
||||
(patch required, and the following tests may break)
|
||||
|
||||
L<http://rt.cpan.org/Public/Bug/Display.html?id=30167>
|
||||
(need to see what is the best solution right now)
|
||||
|
||||
L<http://rt.cpan.org/Public/Bug/Display.html?id=34828>
|
||||
(segfault while testing under Windows)
|
||||
|
||||
L<http://rt.cpan.org/Public/Bug/Display.html?id=36836>
|
||||
(patch required)
|
||||
|
||||
L<http://rt.cpan.org/Public/Bug/Display.html?id=13631>
|
||||
(test required)
|
||||
|
||||
L<http://rt.cpan.org/Public/Bug/Display.html?id=35449>
|
||||
(break tests)
|
||||
|
||||
L<http://rt.cpan.org/Public/Bug/Display.html?id=29629>
|
||||
(patch required)
|
||||
|
||||
Switch tests to Test::More to support more advanced testing behaviours
|
||||
|
||||
=head1 AUTHOR
|
||||
|
||||
Matt Sergeant E<lt>matt@sergeant.orgE<gt>
|
||||
|
|
Loading…
Add table
Reference in a new issue