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

Preparing for 1.21 release

This commit is contained in:
Adam Kennedy 2009-04-08 01:16:57 +00:00
parent a90d0d6146
commit 0ede9e1124
3 changed files with 4 additions and 4 deletions

View file

@ -1,7 +1,7 @@
Changes for Perl extension DBD-SQLite.
1.20_01 not yet released
- fixed the issue that execute on inactive handles returned
1.21 Wed 9 Apr 2009
- Fixed the issue that execute on inactive handles returned
0 instead of undef, which made a DBIC test broken (ISHIGAKI)
1.20 Mon 7 Apr 2009

View file

@ -8,7 +8,7 @@ use DynaLoader ();
use vars qw($VERSION @ISA);
use vars qw{$err $errstr $drh $sqlite_version};
BEGIN {
$VERSION = '1.20';
$VERSION = '1.21';
@ISA = ('DynaLoader');
# Driver singleton

View file

@ -9,7 +9,7 @@ use Test::More ();
use vars qw{$VERSION @ISA @EXPORT};
BEGIN {
$VERSION = '1.20';
$VERSION = '1.21';
@ISA = qw{ Exporter };
@EXPORT = qw{ connect_ok };