diff --git a/Changes b/Changes index ee1a6ab..c415b40 100644 --- a/Changes +++ b/Changes @@ -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 diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index 3a8fb62..402b371 100644 --- a/lib/DBD/SQLite.pm +++ b/lib/DBD/SQLite.pm @@ -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 diff --git a/t/lib/Test.pm b/t/lib/Test.pm index c9661da..26cb41a 100644 --- a/t/lib/Test.pm +++ b/t/lib/Test.pm @@ -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 };