From 0ede9e1124960be6b1206dd1bb6f15e1077939c8 Mon Sep 17 00:00:00 2001 From: Adam Kennedy Date: Wed, 8 Apr 2009 01:16:57 +0000 Subject: [PATCH] Preparing for 1.21 release --- Changes | 4 ++-- lib/DBD/SQLite.pm | 2 +- t/lib/Test.pm | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) 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 };