diff --git a/Changes b/Changes index 8dfd6ca..8adba08 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Changes for Perl extension DBD-SQLite +1.30_05 Fri 27 Aug 2010 + - Test::NoWarnings bundled in the "inc" directory was ignored + in a new test. (ISHIGAKI) + 1.30_04 Wed 25 Aug 2010 - Updated to SQLite 3.7.2 (DUNCAND) - Resolved #60698: "Test failures with SQLite 3.7", using included diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index 05845b4..c8602d2 100644 --- a/lib/DBD/SQLite.pm +++ b/lib/DBD/SQLite.pm @@ -10,7 +10,7 @@ use vars qw{$err $errstr $drh $sqlite_version $sqlite_version_number}; use vars qw{%COLLATION}; BEGIN { - $VERSION = '1.30_04'; + $VERSION = '1.30_05'; @ISA = 'DynaLoader'; # Initialize errors diff --git a/t/lib/Test.pm b/t/lib/Test.pm index d6f268d..487987d 100644 --- a/t/lib/Test.pm +++ b/t/lib/Test.pm @@ -10,7 +10,7 @@ use Test::More (); use vars qw{$VERSION @ISA @EXPORT @CALL_FUNCS}; my $parent; BEGIN { - $VERSION = '1.30_03'; + $VERSION = '1.30_05'; @ISA = 'Exporter'; @EXPORT = qw/connect_ok dies @CALL_FUNCS/;