diff --git a/Changes b/Changes index a928a9f..a368838 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,9 @@ Changes for Perl extension DBD-SQLite. +1.19_11 to be released - Check DBI version in Makefile.PL (CHORNY) + - Bundling Test::NoWarings into /inc to remove a dependency (ADAMK) + - Correcting use 5.00503 to 5.006 in SQLite.pm (ADAMK) 1.19_10 Mon 6 Apr 2009 - A few more tests moved to Test::More (ADAMK) diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index e2a5db6..b597928 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.19_10'; + $VERSION = '1.19_11'; @ISA = ('DynaLoader'); # Driver singleton diff --git a/t/lib/Test.pm b/t/lib/Test.pm index 384bf8c..203bf22 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.19_10'; + $VERSION = '1.19_11'; @ISA = qw{ Exporter }; @EXPORT = qw{ connect_ok };